diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-06-14 12:27:04 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-06-14 12:27:04 -0700 |
commit | 55519c21af02b344fa9753111e3bf6f4975b0479 (patch) | |
tree | f5ecca6f6d46887d6682b11acb81a24d49fa9de1 /u/process/run.ts | |
parent | 0662f62db82026e44cfff7ec42776eb6c2c06cfa (diff) | |
download | ci-55519c21af02b344fa9753111e3bf6f4975b0479.tar.gz ci-55519c21af02b344fa9753111e3bf6f4975b0479.zip |
Fix some logging stuff
Diffstat (limited to 'u/process/run.ts')
-rw-r--r-- | u/process/run.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/u/process/run.ts b/u/process/run.ts index b09e64e..abe143c 100644 --- a/u/process/run.ts +++ b/u/process/run.ts @@ -22,7 +22,7 @@ export const getStdout = ( .bimap(TraceUtil.withFunctionTrace(getStdout)) .map((tCmd) => { const cmd = tCmd.get(); - tCmd.trace.trace(`:> im gonna run this command! ${cmd}`); + tCmd.trace.trace(`Command = ${cmd} :> im gonna run this command! `); const [exec, ...args] = typeof cmd === "string" ? cmd.split(" ") : cmd; return new Deno.Command(exec, { args, |