Debug: log verbInfo method and url in click handler

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 21:58:43 +00:00
parent d1a47e1e52
commit 74428cc433
2 changed files with 6 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
// =========================================================================
var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } });
var SX_VERSION = "2026-03-06T21:57:37Z";
var SX_VERSION = "2026-03-06T21:58:38Z";
function isNil(x) { return x === NIL || x === null || x === undefined; }
function isSxTruthy(x) { return x !== false && !isNil(x); }
@@ -1842,7 +1842,7 @@ return postSwap(target); });
var timer = NIL;
var lastVal = NIL;
var listenTarget = (isSxTruthy(get(mods, "from")) ? domQuery(get(mods, "from")) : el);
return (isSxTruthy(listenTarget) ? domAddListener(listenTarget, eventName, function(e) { logInfo((String("sx:click ") + String(eventName) + String(" ") + String(domTagName(el)) + String(" href=") + String(domGetAttr(el, "href"))));
return (isSxTruthy(listenTarget) ? domAddListener(listenTarget, eventName, function(e) { logInfo((String("sx:click ") + String(eventName) + String(" ") + String(domTagName(el)) + String(" href=") + String(domGetAttr(el, "href")) + String(" method=") + String(get(verbInfo, "method")) + String(" url=") + String(get(verbInfo, "url"))));
return (function() {
var shouldFire = true;
if (isSxTruthy(get(mods, "changed"))) {

View File

@@ -373,7 +373,10 @@
(when listen-target
(dom-add-listener listen-target event-name
(fn (e)
(log-info (str "sx:click " event-name " " (dom-tag-name el) " href=" (dom-get-attr el "href")))
(log-info (str "sx:click " event-name " " (dom-tag-name el)
" href=" (dom-get-attr el "href")
" method=" (get verbInfo "method")
" url=" (get verbInfo "url")))
(let ((should-fire true))
;; Changed modifier: skip if value unchanged
(when (get mods "changed")