We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c07313e commit 71076eeCopy full SHA for 71076ee
enterprise/replicasync/replicasync.go
@@ -171,7 +171,7 @@ func (m *Manager) loop(ctx context.Context) {
171
}
172
err := m.syncReplicas(ctx)
173
if err != nil && !errors.Is(err, context.Canceled) {
174
- m.logger.Warn(ctx, "run replica update loop", slog.Error(err))
+ m.logger.Error(ctx, "run replica update loop", slog.Error(err))
175
176
177
@@ -192,7 +192,7 @@ func (m *Manager) subscribe(ctx context.Context) error {
192
update = func() {
193
194
195
- m.logger.Warn(ctx, "run replica from subscribe", slog.Error(err))
+ m.logger.Error(ctx, "run replica from subscribe", slog.Error(err))
196
197
updateMutex.Lock()
198
if needsUpdate {
0 commit comments