Dropped unnecessary info log to debug (#7922)

Этот коммит содержится в:
Jonathan
2017-11-30 10:04:23 -05:00
коммит произвёл Harrison Healey
родитель 375c0632fa
Коммит c30a3aff9f

Просмотреть файл

@@ -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
}