Skip to content

Commit 34bfd32

Browse files
committed
fix: comment out unused debug log
1 parent 8396728 commit 34bfd32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default class VerdaccioMiddlewarePlugin implements IPluginMiddleware<Cust
7070
// this.logger.debug(`[install-counts] metadata: ${JSON.stringify(metadata)}`);
7171
const results = await getPackageDownloadTimeSeriesResults(self.redisClient, startDate, endDate, packageName);
7272
const hasResults = results !== null && results.length > 0;
73-
this.logger.debug(`[install-counts] results: ${JSON.stringify(results)}`);
73+
// this.logger.debug(`[install-counts] results: ${JSON.stringify(results)}`);
7474
let totalDownloads = 0;
7575
if (hasResults) {
7676
for (const [timestamp, count] of results) {

0 commit comments

Comments
 (0)