[#551] Refactor notifications logs

Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
Denis Kirillov 2022-06-24 17:34:44 +03:00 committed by Alex Vanin
parent e84ff96593
commit f72bc538b9
2 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,9 @@ func New(log *zap.Logger, obj layer.Client, notificator Notificator, cfg *Config
return nil, errors.New("empty logger")
}
if cfg.NotificatorEnabled && notificator == nil {
if !cfg.NotificatorEnabled {
log.Warn("notificator is disabled, s3 won't produce notification events")
} else if notificator == nil {
return nil, errors.New("empty notificator")
}