Set warning as an alias for warn on Console.prototype, not on the singleton

This commit is contained in:
Justin SB
2014-09-19 18:42:06 -07:00
parent b97032b85e
commit 30442946cf

View File

@@ -319,6 +319,6 @@ _.extend(Console.prototype, {
});
Console.warning = Console.warn;
Console.prototype.warning = Console.prototype.warn;
exports.Console = new Console;