summaryrefslogtreecommitdiffstats
path: root/app/email_batching.go
diff options
context:
space:
mode:
authorJonathan <jonfritz@gmail.com>2017-11-30 10:04:23 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2017-11-30 10:04:23 -0500
commitc30a3aff9f8f2288fdaa1359e38aca86f9524978 (patch)
treefd0cf854256b0aeaf911f51e537e870bf7138881 /app/email_batching.go
parent375c0632fab03e3fb54865e320585888499c076d (diff)
downloadchat-c30a3aff9f8f2288fdaa1359e38aca86f9524978.tar.gz
chat-c30a3aff9f8f2288fdaa1359e38aca86f9524978.tar.bz2
chat-c30a3aff9f8f2288fdaa1359e38aca86f9524978.zip
Dropped unnecessary info log to debug (#7922)
Diffstat (limited to 'app/email_batching.go')
-rw-r--r--app/email_batching.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/email_batching.go b/app/email_batching.go
index ba26b0f98..70fd7eb40 100644
--- a/app/email_batching.go
+++ b/app/email_batching.go
@@ -148,7 +148,7 @@ func (job *EmailBatchingJob) checkPendingNotifications(now time.Time, handler fu
} else if channelMembers, ok := result.Data.(*model.ChannelMembers); ok {
for _, channelMember := range *channelMembers {
if channelMember.LastViewedAt >= batchStartTime {
- l4g.Info("Deleted notifications for user %s", userId)
+ l4g.Debug("Deleted notifications for user %s", userId)
delete(job.pendingNotifications, userId)
break
}