File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
const DelegatingLogger = require ( './DelegatingLogger' ) ;
2
2
const Logger = require ( './Logger' ) ;
3
- const LoggerFactory = require ( './LoggerFactory' ) ;
4
3
5
4
module . exports = class ConfigurableLogger extends DelegatingLogger {
6
5
static DEFAULT_CONFIG_PATH = 'logging.level' ;
Original file line number Diff line number Diff line change
1
+ 1.1.1 / 2021-07-19
2
+ ==================
3
+
4
+ * Fix LoggerFactory erring - @craigparra
5
+
1
6
1.1.0 / 2021-07-19
2
7
==================
3
8
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ module.exports = class LoggerFactory {
72
72
}
73
73
let _configArg = ( typeof category == 'object' ? category : configArg ) ;
74
74
let _category = ( typeof category == 'object' ? '' : category ) ;
75
- return new ConfigurableLogger ( this . detectConfig ( _configArg ) ,
75
+ return new ConfigurableLogger ( LoggerFactory . detectConfig ( _configArg ) ,
76
76
new ConsoleLogger ( _category ,
77
77
null , null , null ,
78
78
LoggerFactory . getFormatter ( _configArg ) ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @alt-javascript/logger" ,
3
- "version" : " 1.1.0 " ,
3
+ "version" : " 1.1.1 " ,
4
4
"description" : " A simple configurable logging facade for javascript." ,
5
5
"author" : " " ,
6
6
"keywords" : [
You can’t perform that action at this time.
0 commit comments