summaryrefslogtreecommitdiff
path: root/content/handlers/javascript/duktape/Console.bnd
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-09-03 23:19:11 +0100
committerVincent Sanders <vince@kyllikki.org>2017-09-06 18:45:35 +0100
commit63f5ba6f62eb3f506d06d16f29e18c49338a1128 (patch)
tree7e4d91fd664fb572aff1d64093a93c1bb38fdd6f /content/handlers/javascript/duktape/Console.bnd
parent9e81082355a54daf468589f5c4f351d869ec5a21 (diff)
downloadnetsurf-63f5ba6f62eb3f506d06d16f29e18c49338a1128.tar.gz
netsurf-63f5ba6f62eb3f506d06d16f29e18c49338a1128.tar.bz2
update bindings with logging changes
Diffstat (limited to 'content/handlers/javascript/duktape/Console.bnd')
-rw-r--r--content/handlers/javascript/duktape/Console.bnd2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/handlers/javascript/duktape/Console.bnd b/content/handlers/javascript/duktape/Console.bnd
index 7b4de1ee3..c4c0c8399 100644
--- a/content/handlers/javascript/duktape/Console.bnd
+++ b/content/handlers/javascript/duktape/Console.bnd
@@ -34,7 +34,7 @@ write_log_entry(duk_context *ctx, unsigned int group, char logtype)
/* spcs... pfx strs... */
duk_concat(ctx, duk_get_top(ctx));
/* str */
- LOG("%s", duk_safe_to_string(ctx, 0));
+ NSLOG(netsurf, INFO, "%s", duk_safe_to_string(ctx, 0));
}
%};