Add more logs

This commit is contained in:
binwiederhier 2023-02-07 22:45:55 -05:00
parent 2f0fdf1252
commit bf96d21d67
2 changed files with 64 additions and 8 deletions

View file

@ -88,7 +88,7 @@ func (t *topic) CancelSubscribers(exceptUserID string) {
defer t.mu.Unlock()
for _, s := range t.subscribers {
if s.userID != exceptUserID {
log.Trace("Canceling subscriber %s", s.userID)
log.Field("topic", t.ID).Trace("Canceling subscriber %s", s.userID)
s.cancel()
}
}