Merge pull request #128 from AikidoSec/verbose-logging

This commit is contained in:
bitterpanda 2025-11-04 11:01:12 +01:00 committed by GitHub
commit 1f208d8784
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 115 additions and 14 deletions

View file

@ -7,8 +7,13 @@ export function getLoggingLevel() {
return LOGGING_SILENT;
}
if (level === LOGGING_VERBOSE) {
return LOGGING_VERBOSE;
}
return LOGGING_NORMAL;
}
export const LOGGING_SILENT = "silent";
export const LOGGING_NORMAL = "normal";
export const LOGGING_VERBOSE = "verbose";