logd-console-output
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "logd-console-output", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "console output for logd", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -27,4 +27,4 @@ 'use strict'; | ||
context.print(this.decorate(context, this.getTimeSignature(value.date)+' > ', 'time')); | ||
context.print(this.decorate(context, this.pad(this.truncateLeft(this.truncatePath(value.fileName)), 31, ' '), 'path')); | ||
context.print(this.decorate(context, `:${this.padRight(value.lineNumber)} `, 'line')); | ||
context.print(this.decorate(context, this.pad(this.truncateLeft(this.truncatePath(value.fileName || 'n/a')), 31, ' '), 'path')); | ||
context.print(this.decorate(context, `:${this.padRight(value.lineNumber || 'n/a')} `, 'line')); | ||
context.print(this.decorate(context, this.pad(this.truncateLeft(this.getSignature(value), 25), 25, ' '), 'signature')); | ||
@@ -31,0 +31,0 @@ } |
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
57359