Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aurelia-logging

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurelia-logging - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

2

bower.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc