We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf1d8920 commitbfaffb7Copy full SHA for bfaffb7
coderd/cryptokeys/rotate.go
@@ -152,7 +152,7 @@ func (k *rotator) rotateKeys(ctx context.Context) error {
152
}
153
154
ifvalidKeys==0 {
155
-k.logger.Info(ctx,"no valid keys detected, inserting new key",
+k.logger.Debug(ctx,"no valid keys detected, inserting new key",
156
slog.F("feature",feature),
157
)
158
_,err:=k.insertNewKey(ctx,tx,feature,now)
@@ -194,7 +194,7 @@ func (k *rotator) insertNewKey(ctx context.Context, tx database.Store, feature d
194
return database.CryptoKey{},xerrors.Errorf("inserting new key: %w",err)
195
196
197
-k.logger.Info(ctx,"inserted new key for feature",slog.F("feature",feature))
+k.logger.Debug(ctx,"inserted new key for feature",slog.F("feature",feature))
198
returnnewKey,nil
199
200