ssb: Shorten the timed query output.
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled

This commit is contained in:
2025-07-02 18:21:40 -04:00
parent ef389f2ba2
commit b3bac2927d
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ {
"type": "tildefriends-app", "type": "tildefriends-app",
"emoji": "🦀", "emoji": "🦀",
"previous": "&6ML6KvKpwkVZEn7KtV0p9PylEkS8r28eGbbgmfwmVqM=.sha256" "previous": "&V6GCGrODPSihChLo5Nb8Lw6X33BLSsEVGGfiliOdWrE=.sha256"
} }

View File

@ -360,7 +360,7 @@ class TfElement extends LitElement {
let start = new Date(); let start = new Date();
let result = await tfrpc.rpc.query(sql, args); let result = await tfrpc.rpc.query(sql, args);
let end = new Date(); let end = new Date();
console.log((end - start) / 1000, sql); console.log((end - start) / 1000, sql.replaceAll(/\s+/g, ' ').trim());
return result; return result;
} }