Comparing version 1.8.14 to 1.8.15
@@ -47,2 +47,9 @@ /* | ||
// Wrapper method for trace | ||
this.trace = function (payload) { | ||
var log = this.generateLogJSON(payload); | ||
this.bunyanLogger.trace(log); | ||
this.resetObjects(); | ||
} | ||
// Wrapper method for debug | ||
@@ -68,2 +75,9 @@ this.debug = function (payload) { | ||
// Wrapper method for fatal | ||
this.fatal = function (payload) { | ||
var log = this.generateLogJSON(payload); | ||
this.bunyanLogger.fatal(log); | ||
this.resetObjects(); | ||
} | ||
// This method appends program and language properties and also a tag if it is specified | ||
@@ -70,0 +84,0 @@ this.generateLogJSON = function (payload) { |
@@ -282,3 +282,3 @@ { | ||
}, | ||
"version": "1.8.14" | ||
"version": "1.8.15" | ||
} |
467636
1961