@sjts/lib-log 31.1.5 → 31.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Logger.js +1 -3
- package/package.json +1 -1
package/dist/Logger.js
CHANGED
|
@@ -164,9 +164,7 @@ export class Logger {
|
|
|
164
164
|
delete Logger._openProfiles[key];
|
|
165
165
|
if (!initiated)
|
|
166
166
|
this.initProfiles([key]);
|
|
167
|
-
const msg =
|
|
168
|
-
? Logger.indentMessage(`${green}${duration}ms${reset}`)
|
|
169
|
-
: Logger.indentMessage(`${blue}${italic}${key}${reset} - ${green}${duration}ms${reset}`);
|
|
167
|
+
const msg = Logger.indentMessage(`${blue}${italic}${key}${reset} - ${green}${duration}ms${reset}`);
|
|
170
168
|
this.instance.c.log(msg);
|
|
171
169
|
}
|
|
172
170
|
static initProfiles(exclude = []) {
|