mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Merge pull request #128 from AikidoSec/verbose-logging
This commit is contained in:
commit
1f208d8784
8 changed files with 115 additions and 14 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue