summaryrefslogtreecommitdiff
path: root/content/handlers/javascript/duktape/Window.bnd
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2019-02-17 11:33:28 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2019-02-17 11:33:28 +0000
commit41eed8eeaf54861c28ff37800ad2e27341946330 (patch)
tree1dca2ce7e71490e2f0a464417169c9fad906f9ae /content/handlers/javascript/duktape/Window.bnd
parentf64da1abda3d39fc3e76d49ef111d6f0c71469c0 (diff)
downloadnetsurf-41eed8eeaf54861c28ff37800ad2e27341946330.tar.gz
netsurf-41eed8eeaf54861c28ff37800ad2e27341946330.tar.bz2
Use NSLOG rather than LOG/JS_LOG
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'content/handlers/javascript/duktape/Window.bnd')
-rw-r--r--content/handlers/javascript/duktape/Window.bnd2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/handlers/javascript/duktape/Window.bnd b/content/handlers/javascript/duktape/Window.bnd
index 98ba39df8..bdabf1179 100644
--- a/content/handlers/javascript/duktape/Window.bnd
+++ b/content/handlers/javascript/duktape/Window.bnd
@@ -54,7 +54,7 @@ prototype Window()
getter Window::document()
%{
- JS_LOG("priv=%p", priv);
+ NSLOG(netsurf, DEBUG, "priv=%p", priv);
dom_document *doc = priv->htmlc->document;
dukky_push_node(ctx, (struct dom_node *)doc);
return 1;