From f0957e281508235e5fbfe54a15491b6861076f06 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Tue, 20 Jun 2023 22:51:11 +0200 Subject: [PATCH] Clarify log message --- cluster/iam/iam.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/iam/iam.go b/cluster/iam/iam.go index b292be41..99e0b677 100644 --- a/cluster/iam/iam.go +++ b/cluster/iam/iam.go @@ -40,7 +40,7 @@ func New(config iam.Config, store store.Store) (iam.IAM, error) { } func (m *manager) apply(op store.Operation) { - m.logger.Debug().WithField("operation", string(op)).Log("") + m.logger.Debug().WithField("operation", string(op)).Log("Applying action on operation") switch op { case store.OpAddIdentity: m.ReloadIndentities()