Clean up logs

This commit is contained in:
Colin McDonnell
2025-12-17 12:43:08 -08:00
parent 479e066492
commit 4826e9acb1
8 changed files with 78 additions and 115 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export class Timer {
? now - this.lastCheckpointTimestamp
: now - this.initialTimestamp;
log.info(`${name}: ${duration}ms`);
log.debug(`» ${name}: ${duration}ms`);
this.lastCheckpointTimestamp = now;
}
}