chore: adjust log level (#6913)

This commit is contained in:
darkskygit
2024-05-14 09:32:28 +00:00
parent b8333de119
commit 8881286025
5 changed files with 12 additions and 8 deletions
@@ -102,7 +102,9 @@ export class DocHistoryManager {
description: 'How many times the snapshot history created',
})
.add(1);
this.logger.log(`History created for ${id} in workspace ${workspaceId}.`);
this.logger.debug(
`History created for ${id} in workspace ${workspaceId}.`
);
}
}
@@ -72,10 +72,12 @@ export class QuotaManagementService {
const total = usedSize + recvSize;
// only skip total storage check if workspace has unlimited feature
if (total > quota && !unlimited) {
this.logger.log(`storage size limit exceeded: ${total} > ${quota}`);
this.logger.warn(`storage size limit exceeded: ${total} > ${quota}`);
return true;
} else if (recvSize > blobLimit) {
this.logger.log(`blob size limit exceeded: ${recvSize} > ${blobLimit}`);
this.logger.warn(
`blob size limit exceeded: ${recvSize} > ${blobLimit}`
);
return true;
} else {
return false;