@clawos-dev/clawd 0.2.197-beta.395.9076431 → 0.2.197
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/cli.cjs +5 -7
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -57604,15 +57604,13 @@ async function startDaemon(config) {
|
|
|
57604
57604
|
logClient
|
|
57605
57605
|
});
|
|
57606
57606
|
logger.info("starting clawd", { version, config: { port: config.port, host: config.host, dataDir: config.dataDir } });
|
|
57607
|
-
const screenIdleProbeLogger =
|
|
57607
|
+
const screenIdleProbeLogger = createFileOnlyLogger({
|
|
57608
57608
|
file: import_node_path55.default.join(config.dataDir, "screen-idle-probe.log"),
|
|
57609
57609
|
level: "debug"
|
|
57610
|
-
})
|
|
57611
|
-
|
|
57612
|
-
|
|
57613
|
-
|
|
57614
|
-
});
|
|
57615
|
-
}
|
|
57610
|
+
});
|
|
57611
|
+
logger.info("screen-idle probe logger enabled", {
|
|
57612
|
+
file: import_node_path55.default.join(config.dataDir, "screen-idle-probe.log")
|
|
57613
|
+
});
|
|
57616
57614
|
const stateMgr = new StateFileManager({ dataDir: config.dataDir });
|
|
57617
57615
|
const pre = stateMgr.preflight();
|
|
57618
57616
|
if (pre.status === "active") {
|
package/package.json
CHANGED