aurelia-logging
Advanced tools
Comparing version 1.3.0 to 1.3.1
{ | ||
"name": "aurelia-logging", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -49,8 +49,7 @@ define(['exports'], function (exports) { | ||
function connectLoggers() { | ||
Object.assign(Logger.prototype, { | ||
debug: logFactory('debug'), | ||
info: logFactory('info'), | ||
warn: logFactory('warn'), | ||
error: logFactory('error') | ||
}); | ||
var proto = Logger.prototype; | ||
proto.debug = logFactory('debug'); | ||
proto.info = logFactory('info'); | ||
proto.warn = logFactory('warn'); | ||
proto.error = logFactory('error'); | ||
} | ||
@@ -57,0 +56,0 @@ |
@@ -66,8 +66,7 @@ | ||
function connectLoggers() { | ||
Object.assign(Logger.prototype, { | ||
debug: logFactory('debug'), | ||
info: logFactory('info'), | ||
warn: logFactory('warn'), | ||
error: logFactory('error') | ||
}); | ||
let proto = Logger.prototype; | ||
proto.debug = logFactory('debug'); | ||
proto.info = logFactory('info'); | ||
proto.warn = logFactory('warn'); | ||
proto.error = logFactory('error'); | ||
} | ||
@@ -74,0 +73,0 @@ |
@@ -48,8 +48,7 @@ 'use strict'; | ||
function connectLoggers() { | ||
Object.assign(Logger.prototype, { | ||
debug: logFactory('debug'), | ||
info: logFactory('info'), | ||
warn: logFactory('warn'), | ||
error: logFactory('error') | ||
}); | ||
var proto = Logger.prototype; | ||
proto.debug = logFactory('debug'); | ||
proto.info = logFactory('info'); | ||
proto.warn = logFactory('warn'); | ||
proto.error = logFactory('error'); | ||
} | ||
@@ -56,0 +55,0 @@ |
@@ -34,8 +34,7 @@ | ||
function connectLoggers() { | ||
Object.assign(Logger.prototype, { | ||
debug: logFactory('debug'), | ||
info: logFactory('info'), | ||
warn: logFactory('warn'), | ||
error: logFactory('error') | ||
}); | ||
let proto = Logger.prototype; | ||
proto.debug = logFactory('debug'); | ||
proto.info = logFactory('info'); | ||
proto.warn = logFactory('warn'); | ||
proto.error = logFactory('error'); | ||
} | ||
@@ -42,0 +41,0 @@ |
@@ -37,8 +37,7 @@ | ||
function connectLoggers() { | ||
Object.assign(Logger.prototype, { | ||
debug: logFactory('debug'), | ||
info: logFactory('info'), | ||
warn: logFactory('warn'), | ||
error: logFactory('error') | ||
}); | ||
var proto = Logger.prototype; | ||
proto.debug = logFactory('debug'); | ||
proto.info = logFactory('info'); | ||
proto.warn = logFactory('warn'); | ||
proto.error = logFactory('error'); | ||
} | ||
@@ -45,0 +44,0 @@ |
@@ -32,8 +32,7 @@ 'use strict'; | ||
function connectLoggers() { | ||
Object.assign(Logger.prototype, { | ||
debug: logFactory('debug'), | ||
info: logFactory('info'), | ||
warn: logFactory('warn'), | ||
error: logFactory('error') | ||
}); | ||
var proto = Logger.prototype; | ||
proto.debug = logFactory('debug'); | ||
proto.info = logFactory('info'); | ||
proto.warn = logFactory('warn'); | ||
proto.error = logFactory('error'); | ||
} | ||
@@ -40,0 +39,0 @@ |
@@ -0,1 +1,11 @@ | ||
<a name="1.3.1"></a> | ||
## [1.3.1](https://github.com/aurelia/logging/compare/1.3.0...v1.3.1) (2017-03-26) | ||
### Bug Fixes | ||
* **logging:** restore ES5 compatibility ([70bb834](https://github.com/aurelia/logging/commit/70bb834)) | ||
<a name="1.3.0"></a> | ||
@@ -2,0 +12,0 @@ # [1.3.0](https://github.com/aurelia/logging/compare/1.2.0...v1.3.0) (2017-02-21) |
{ | ||
"name": "aurelia-logging", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -65,8 +65,7 @@ /** | ||
function connectLoggers() { | ||
Object.assign(Logger.prototype, { | ||
debug: logFactory('debug'), | ||
info: logFactory('info'), | ||
warn: logFactory('warn'), | ||
error: logFactory('error') | ||
}); | ||
let proto = Logger.prototype; | ||
proto.debug = logFactory('debug'); | ||
proto.info = logFactory('info'); | ||
proto.warn = logFactory('warn'); | ||
proto.error = logFactory('error'); | ||
} | ||
@@ -73,0 +72,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
144208
2070