This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Description
$log.info("My log message.")
should result in
but on IE9 it shows:
The following patch suppresses this noise:
@@ -5586,7 +5591,7 @@
// we are IE which either doesn't have window.console => this is noop and we do nothing,
// or we are IE where console.log doesn't have apply so we log at least first 2 args
return function(arg1, arg2) {
- logFn(arg1, arg2);
+ logFn(arg1, arg2 || '');
}
}
}];