Skip to content

Commit

Permalink
fix: comment out unused debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
favoyang committed Oct 26, 2023
1 parent 8396728 commit 34bfd32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class VerdaccioMiddlewarePlugin implements IPluginMiddleware<Cust
// this.logger.debug(`[install-counts] metadata: ${JSON.stringify(metadata)}`);
const results = await getPackageDownloadTimeSeriesResults(self.redisClient, startDate, endDate, packageName);
const hasResults = results !== null && results.length > 0;
this.logger.debug(`[install-counts] results: ${JSON.stringify(results)}`);
// this.logger.debug(`[install-counts] results: ${JSON.stringify(results)}`);
let totalDownloads = 0;
if (hasResults) {
for (const [timestamp, count] of results) {
Expand Down

0 comments on commit 34bfd32

Please sign in to comment.