bugfix log wrapper function fixes #31

This commit is contained in:
Artur Girenko 2016-03-22 22:29:59 +01:00
parent 47c12ce82e
commit 92b0876ce2
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ function compileWarningsToYellowBox() {
if (compileWarningRx.test(msg)) {
console.warn(msg);
} else {
log.call(window.console, msg);
log.apply(window.console, arguments);
}
};
}