refactor: Remove redundant debug logging in GenerationJobManager and RedisEventTransport

- Eliminated unnecessary debug statements in GenerationJobManager related to subscriber actions and job updates, enhancing log clarity.
- Removed debug logging in RedisEventTransport for subscription and subscriber disconnection events, streamlining the logging output.
- Cleaned up debug messages in RedisJobStore to focus on essential information, improving overall logging efficiency.
This commit is contained in:
Danny Avila 2025-12-15 01:21:44 -05:00
parent c611fad1d0
commit a133e7decb
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956
3 changed files with 2 additions and 16 deletions

View file

@ -161,7 +161,6 @@ export class RedisEventTransport implements IEventTransport {
this.subscriber.subscribe(channel).catch((err) => {
logger.error(`[RedisEventTransport] Failed to subscribe to ${channel}:`, err);
});
logger.debug(`[RedisEventTransport] Subscribed to channel: ${channel}`);
}
// Return unsubscribe function
@ -192,7 +191,6 @@ export class RedisEventTransport implements IEventTransport {
}
this.streams.delete(streamId);
logger.debug(`[RedisEventTransport] All subscribers left ${streamId}`);
}
},
};