Compare commits

..

No commits in common. "2016bcede05d7c11488bff343ebc456c224d9946" and "3b3052fd1c6cc863cb9cb088fef0425e6f88ec03" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@navy.gif/logger",
"version": "1.2.6",
"version": "1.2.5",
"description": "Logging thing",
"main": "index.js",
"author": "Navy.gif",

View File

@ -27,7 +27,7 @@ class LoggerClient {
}
this.#_guard = opts.guard || Defaults.ClientOptions.guard;
this.#_logLevel = opts.logLevel ?? Defaults.ClientOptions.logLevel;
this.#_logLevel = opts.logLevel || Defaults.ClientOptions.logLevel;
this.#_logLevelMapping = { ...Defaults.ClientOptions.logLevelMapping, ...opts.logLevelMapping };
}