From 85a4792280290e7a2ce12ec200032dee1848ad12 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 4 May 2019 17:57:45 +0100 Subject: Add createElementNS Signed-off-by: Daniel Silverstone --- content/handlers/javascript/duktape/dukky.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'content/handlers/javascript/duktape/dukky.c') diff --git a/content/handlers/javascript/duktape/dukky.c b/content/handlers/javascript/duktape/dukky.c index 171736338..8fa011ebc 100644 --- a/content/handlers/javascript/duktape/dukky.c +++ b/content/handlers/javascript/duktape/dukky.c @@ -721,7 +721,8 @@ bool js_exec(jscontext *ctx, const char *txt, size_t txtlen, const char *name) assert(ctx); if (txt == NULL || txtlen == 0) return false; duk_set_top(CTX, 0); - NSLOG(dukky, DEEPDEBUG, "%zd bytes: %s", txtlen, txt); + NSLOG(dukky, DEEPDEBUG, "Running %zd bytes from %s", txtlen, name); + NSLOG(dukky, DEEPDEBUG, "\n%s\n", txt); (void) nsu_getmonotonic_ms(&ctx->exec_start_time); if (name != NULL) { -- cgit v1.2.3