Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/d77ed689e69c6db402cf8311b402f073172c35b1
...commit
http://git.netsurf-browser.org/netsurf.git/commit/d77ed689e69c6db402cf8311b402f073172c35b1
...tree
http://git.netsurf-browser.org/netsurf.git/tree/d77ed689e69c6db402cf8311b402f073172c35b1
The branch, master has been updated
via d77ed689e69c6db402cf8311b402f073172c35b1 (commit)
from 52ef77ceef3f2b2e1ba094aa8cd5c6b4494a91a0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=d77ed689e69c6db402cf8311b402f073172c35b1
commit d77ed689e69c6db402cf8311b402f073172c35b1
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>
Quieten dukky a little more in default log levels
Signed-off-by: Daniel Silverstone <[email protected]>
diff --git a/content/handlers/javascript/duktape/dukky.c
b/content/handlers/javascript/duktape/dukky.c
index c3b9569..70e9be8 100644
--- a/content/handlers/javascript/duktape/dukky.c
+++ b/content/handlers/javascript/duktape/dukky.c
@@ -804,17 +804,17 @@ js_exec(jscontext *ctx, const uint8_t *txt, size_t
txtlen, const char *name)
DUK_COMPILE_EVAL,
(const char *)txt,
txtlen) != 0) {
- NSLOG(dukky, INFO, "Failed to compile JavaScript input");
+ NSLOG(dukky, DEBUG, "Failed to compile JavaScript input");
goto handle_error;
}
if (duk_pcall(CTX, 0/*nargs*/) == DUK_EXEC_ERROR) {
- NSLOG(dukky, INFO, "Failed to execute JavaScript");
+ NSLOG(dukky, DEBUG, "Failed to execute JavaScript");
goto handle_error;
}
if (duk_get_top(CTX) == 0) duk_push_boolean(CTX, false);
- NSLOG(dukky, INFO, "Returning %s",
+ NSLOG(dukky, DEEPDEBUG, "Returning %s",
duk_get_boolean(CTX, 0) ? "true" : "false");
return duk_get_boolean(CTX, 0);
-----------------------------------------------------------------------
Summary of changes:
content/handlers/javascript/duktape/dukky.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/content/handlers/javascript/duktape/dukky.c
b/content/handlers/javascript/duktape/dukky.c
index c3b9569..70e9be8 100644
--- a/content/handlers/javascript/duktape/dukky.c
+++ b/content/handlers/javascript/duktape/dukky.c
@@ -804,17 +804,17 @@ js_exec(jscontext *ctx, const uint8_t *txt, size_t
txtlen, const char *name)
DUK_COMPILE_EVAL,
(const char *)txt,
txtlen) != 0) {
- NSLOG(dukky, INFO, "Failed to compile JavaScript input");
+ NSLOG(dukky, DEBUG, "Failed to compile JavaScript input");
goto handle_error;
}
if (duk_pcall(CTX, 0/*nargs*/) == DUK_EXEC_ERROR) {
- NSLOG(dukky, INFO, "Failed to execute JavaScript");
+ NSLOG(dukky, DEBUG, "Failed to execute JavaScript");
goto handle_error;
}
if (duk_get_top(CTX) == 0) duk_push_boolean(CTX, false);
- NSLOG(dukky, INFO, "Returning %s",
+ NSLOG(dukky, DEEPDEBUG, "Returning %s",
duk_get_boolean(CTX, 0) ? "true" : "false");
return duk_get_boolean(CTX, 0);
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org