feat: Add silent log level for Cloud Code (#8803)

This commit is contained in:
Diamond Lewis
2024-03-21 10:19:29 -05:00
committed by GitHub
parent 7d84b244ab
commit 5f81efb429
5 changed files with 104 additions and 27 deletions

View File

@@ -16,7 +16,7 @@ export const LogOrder = {
ASCENDING: 'asc',
};
export const logLevels = ['error', 'warn', 'info', 'debug', 'verbose', 'silly'];
export const logLevels = ['error', 'warn', 'info', 'debug', 'verbose', 'silly', 'silent'];
export class LoggerController extends AdaptableController {
constructor(adapter, appId, options = { logLevel: 'info' }) {