Commit f661fb0f authored by Aarni Koskela's avatar Aarni Koskela
Browse files

Just use console.error, it's in all browsers

parent a6e653be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ function runCallback(x, m) {
    try {
        x(m);
    } catch (e) {
        (console.error || console.log).call(console, e.message, e);
        console.error("error running callback", x, ":", e);
    }
}
function executeCallbacks(queue, m) {