Log when profiles save

This commit is contained in:
Dev 2024-03-23 17:31:12 +00:00
parent f249d7058c
commit d3fdb08528

View File

@ -85,7 +85,10 @@ export class SaveServer
totalTime += this.saveProfile(sessionID);
}
this.logger.debug(`Saved ${Object.keys(this.profiles).length} profiles, took: ${totalTime.toFixed(2)}ms`, true);
this.logger.debug(
`Saved ${Object.keys(this.profiles).length} profiles, took: ${totalTime.toFixed(2)}ms`,
false,
);
}
/**