Comparing version 0.0.37 to 0.0.38
@@ -31,2 +31,3 @@ /// <reference types="node" /> | ||
hideDate: boolean; | ||
hideLevel: boolean; | ||
useConsole: boolean; | ||
@@ -33,0 +34,0 @@ alwaysDiff: boolean; |
@@ -209,2 +209,4 @@ "use strict"; | ||
else { | ||
if (Log.inspectOpts.hideLevel) | ||
level = ''; | ||
args[0] = date + level + name + ' ' + timer + (args.length ? msg : ''); | ||
@@ -211,0 +213,0 @@ if (Log.alwaysDiff()) |
{ | ||
"name": "exer", | ||
"version": "0.0.37", | ||
"version": "0.0.38", | ||
"description": "Utils in TypeScript, Debug, NanoTimer ...", | ||
@@ -5,0 +5,0 @@ "author": "kbajalc@gmail.com", |
@@ -49,2 +49,3 @@ import tty = require('tty'); | ||
hideDate: boolean; | ||
hideLevel: boolean; | ||
useConsole: boolean; | ||
@@ -275,2 +276,3 @@ alwaysDiff: boolean; | ||
} else { | ||
if (Log.inspectOpts.hideLevel) level = ''; | ||
args[0] = date + level + name + ' ' + timer + (args.length ? msg : ''); | ||
@@ -277,0 +279,0 @@ if (Log.alwaysDiff()) args.push('+' + Log.humanize(this.diff)); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
261467
4289