diff options
author | Eric Bailey <git@esb.lol> | 2024-05-08 18:01:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 18:01:07 -0500 |
commit | 3bac0182b5e93c9109bf00185c6f6d1dbf375f21 (patch) | |
tree | c71387c041944ece554aafbd181b33d46d5fe365 /src/state/messages/events | |
parent | ce2eddca8e95113146e18281415365806088fd5d (diff) | |
download | voidsky-3bac0182b5e93c9109bf00185c6f6d1dbf375f21.tar.zst |
[🐴] Integrate event bus (#3915)
* Integrate event bus * Fixes * Move events mgmt into Convo class * Clean up poll interval updates * Remove unused * Remove annoying log
Diffstat (limited to 'src/state/messages/events')
-rw-r--r-- | src/state/messages/events/agent.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/state/messages/events/agent.ts b/src/state/messages/events/agent.ts index f22cff9d9..eea61a61b 100644 --- a/src/state/messages/events/agent.ts +++ b/src/state/messages/events/agent.ts @@ -347,7 +347,15 @@ export class MessagesEventBus { this.isPolling = true - logger.debug(`${LOGGER_CONTEXT}: poll`, {}, logger.DebugContext.convo) + // logger.debug( + // `${LOGGER_CONTEXT}: poll`, + // { + // requestedPollIntervals: Array.from( + // this.requestedPollIntervals.values(), + // ), + // }, + // logger.DebugContext.convo, + // ) try { const response = await this.agent.api.chat.bsky.convo.getLog( |