@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.mjs
CHANGED
|
@@ -12237,6 +12237,7 @@ function handleWorkspaceSetDefault(args) {
|
|
|
12237
12237
|
|
|
12238
12238
|
// src/commands/handler.ts
|
|
12239
12239
|
var COMMAND_DEBUG_LEVELS = /* @__PURE__ */ new Set([
|
|
12240
|
+
"read_chat",
|
|
12240
12241
|
"pty_input",
|
|
12241
12242
|
"pty_resize",
|
|
12242
12243
|
"cdp_eval",
|
|
@@ -18409,6 +18410,9 @@ var DaemonCommandRouter = class {
|
|
|
18409
18410
|
if (logs.length > 0) {
|
|
18410
18411
|
return { success: true, logs, totalBuffered: logs.length };
|
|
18411
18412
|
}
|
|
18413
|
+
if (sinceTs > 0) {
|
|
18414
|
+
return { success: true, logs: [], totalBuffered: 0 };
|
|
18415
|
+
}
|
|
18412
18416
|
if (fs9.existsSync(LOG_PATH)) {
|
|
18413
18417
|
const content = fs9.readFileSync(LOG_PATH, "utf-8");
|
|
18414
18418
|
const allLines = content.split("\n");
|