chore(pi-notifications): remove remaining console.log

This commit is contained in:
2026-04-28 13:06:44 +01:00
parent 113878e83f
commit 93a5675f06
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -31,7 +31,6 @@ export default function (pi: ExtensionAPI) {
pi.on("agent_end", async (event, _ctx) => {
if (!agentEndEnabled) return;
console.log(`[pi-notifications] agent_end: messages=${JSON.stringify(event.messages?.map((m: any) => m.type))}`);
notify("Agent finished", `${event.messages?.length ?? 0} turns`);
});
}