mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 12:36:51 +03:00
dukky: Clean up the logging levels a little
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
parent
148639b70c
commit
519f029420
@ -654,6 +654,7 @@ bool js_exec(jscontext *ctx, const char *txt, size_t txtlen)
|
|||||||
assert(ctx);
|
assert(ctx);
|
||||||
if (txt == NULL || txtlen == 0) return false;
|
if (txt == NULL || txtlen == 0) return false;
|
||||||
duk_set_top(CTX, 0);
|
duk_set_top(CTX, 0);
|
||||||
|
NSLOG(dukky, DEEPDEBUG, "%zd bytes: %s", txtlen, txt);
|
||||||
|
|
||||||
(void) nsu_getmonotonic_ms(&ctx->exec_start_time);
|
(void) nsu_getmonotonic_ms(&ctx->exec_start_time);
|
||||||
duk_push_string(CTX, "?unknown source?");
|
duk_push_string(CTX, "?unknown source?");
|
||||||
@ -678,12 +679,12 @@ handle_error:
|
|||||||
} else {
|
} else {
|
||||||
#define GETTER(what) \
|
#define GETTER(what) \
|
||||||
if (duk_has_prop_string(CTX, 0, what)) { \
|
if (duk_has_prop_string(CTX, 0, what)) { \
|
||||||
NSLOG(dukky, DEBUG, "Fetching " what); \
|
NSLOG(dukky, DEEPDEBUG, "Fetching " what); \
|
||||||
duk_dup(CTX, 0); \
|
duk_dup(CTX, 0); \
|
||||||
if (duk_safe_call(CTX, dukky_safe_get, (void *)what, 1, 1) != DUK_EXEC_SUCCESS) { \
|
if (duk_safe_call(CTX, dukky_safe_get, (void *)what, 1, 1) != DUK_EXEC_SUCCESS) { \
|
||||||
NSLOG(dukky, DEBUG, "Error fetching " what ": %s", duk_safe_to_string(CTX, -1)); \
|
NSLOG(dukky, DEBUG, "Error fetching " what ": %s", duk_safe_to_string(CTX, -1)); \
|
||||||
} else { \
|
} else { \
|
||||||
NSLOG(dukky, DEBUG, "Success fetching " what); \
|
NSLOG(dukky, DEEPDEBUG, "Success fetching " what); \
|
||||||
} \
|
} \
|
||||||
} else { \
|
} else { \
|
||||||
NSLOG(dukky, DEBUG, "Faking " what); \
|
NSLOG(dukky, DEBUG, "Faking " what); \
|
||||||
|
Loading…
Reference in New Issue
Block a user