From 754ce054b5b1529a482364e9ab19bd7452aaef70 Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Wed, 9 Jul 2025 14:49:16 -0400 Subject: [PATCH] add more debug --- src/artigen/artigen.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/artigen/artigen.ts b/src/artigen/artigen.ts index 34edd36..6d405c9 100644 --- a/src/artigen/artigen.ts +++ b/src/artigen/artigen.ts @@ -37,6 +37,7 @@ export const runCmd = (rollRequest: QueuedRoll): SolvedRoll => { // Whole processor lives in a try-catch to catch artigen's intentional error conditions try { + loggingEnabled && log(LT.LOG, `rollRequest received! ${JSON.stringify(rollRequest)}`); // filter removes all null/empty strings since we don't care about them const sepCmds = rollRequest.rollCmd.split(cmdSplitRegex).filter((x) => x); loggingEnabled && log(LT.LOG, `Split cmd into parts ${JSON.stringify(sepCmds)}`);