Skip to content

Commit

Permalink
[minor] Correct whitespace for #472.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Nov 7, 2014
1 parent 8252801 commit 4134288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/winston/transports/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var Console = exports.Console = function (options) {
this.prettyPrint = options.prettyPrint || false;
this.timestamp = typeof options.timestamp !== 'undefined' ? options.timestamp : false;
this.label = options.label || null;
this.logstash = options.logstash || false;
this.logstash = options.logstash || false;

if (this.json) {
this.stringify = options.stringify || function (obj) {
Expand Down Expand Up @@ -73,7 +73,7 @@ Console.prototype.log = function (level, msg, meta, callback) {
prettyPrint: this.prettyPrint,
raw: this.raw,
label: this.label,
logstash: this.logstash
logstash: this.logstash
});

if (level === 'error' || level === 'debug') {
Expand Down

0 comments on commit 4134288

Please sign in to comment.