File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ loggingModule.factory(
94
94
error : function ( message , desc ) {
95
95
if ( LOGGING_CONFIG . LOGGING_TYPE !== 'none' ) {
96
96
// preserve default behaviour
97
- $log . error . apply ( $log , message ) ;
97
+ $log . error . apply ( $log , [ message ] ) ;
98
98
}
99
99
100
100
// check if the config says we should log to the remote, and also if a remote endpoint was specified
@@ -116,7 +116,7 @@ loggingModule.factory(
116
116
debug : function ( message , desc ) {
117
117
if ( LOGGING_CONFIG . LOGGING_LEVEL !== 'error' ) {
118
118
if ( LOGGING_CONFIG . LOGGING_TYPE !== 'none' ) {
119
- $log . log . apply ( $log , message ) ;
119
+ $log . log . apply ( $log , [ message ] ) ;
120
120
}
121
121
122
122
// check if the config says we should log to the remote, and also if a remote endpoint was specified
You can’t perform that action at this time.
0 commit comments