@adhdev/daemon-core 0.9.24 → 0.9.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -12390,6 +12390,7 @@ function handleWorkspaceSetDefault(args) {
|
|
|
12390
12390
|
|
|
12391
12391
|
// src/commands/handler.ts
|
|
12392
12392
|
var COMMAND_DEBUG_LEVELS = /* @__PURE__ */ new Set([
|
|
12393
|
+
"read_chat",
|
|
12393
12394
|
"pty_input",
|
|
12394
12395
|
"pty_resize",
|
|
12395
12396
|
"cdp_eval",
|
|
@@ -18557,6 +18558,9 @@ var DaemonCommandRouter = class {
|
|
|
18557
18558
|
if (logs.length > 0) {
|
|
18558
18559
|
return { success: true, logs, totalBuffered: logs.length };
|
|
18559
18560
|
}
|
|
18561
|
+
if (sinceTs > 0) {
|
|
18562
|
+
return { success: true, logs: [], totalBuffered: 0 };
|
|
18563
|
+
}
|
|
18560
18564
|
if (fs9.existsSync(LOG_PATH)) {
|
|
18561
18565
|
const content = fs9.readFileSync(LOG_PATH, "utf-8");
|
|
18562
18566
|
const allLines = content.split("\n");
|