From 63f5ba6f62eb3f506d06d16f29e18c49338a1128 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 3 Sep 2017 23:19:11 +0100 Subject: update bindings with logging changes --- content/handlers/javascript/duktape/Location.bnd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'content/handlers/javascript/duktape/Location.bnd') diff --git a/content/handlers/javascript/duktape/Location.bnd b/content/handlers/javascript/duktape/Location.bnd index ca7e90509..a731730de 100644 --- a/content/handlers/javascript/duktape/Location.bnd +++ b/content/handlers/javascript/duktape/Location.bnd @@ -40,7 +40,7 @@ method Location::reload() if (priv_win->win != NULL) { browser_window_reload(priv_win->win, false); } else { - LOG("failed to get browser context"); + NSLOG(netsurf, INFO, "failed to get browser context"); } return 0; %} @@ -54,7 +54,7 @@ method Location::assign() duk_pop(ctx); if (priv_win == NULL || priv_win->win == NULL) { - LOG("failed to get browser context"); + NSLOG(netsurf, INFO, "failed to get browser context"); return 0; } @@ -83,7 +83,7 @@ method Location::replace() duk_pop(ctx); if (priv_win == NULL || priv_win->win == NULL) { - LOG("failed to get browser context"); + NSLOG(netsurf, INFO, "failed to get browser context"); return 0; } @@ -131,7 +131,7 @@ setter Location::href() duk_pop(ctx); if (priv_win == NULL || priv_win->win == NULL) { - LOG("failed to get browser context"); + NSLOG(netsurf, INFO, "failed to get browser context"); return 0; } -- cgit v1.2.3