Skip to content

Commit

Permalink
fix log in manager (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
teckick authored Sep 5, 2020
1 parent bf044de commit b065ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy/server/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func (m *Manager) ReloadNamespacePrepare(namespaceConfig *models.Namespace) erro
func (m *Manager) ReloadNamespaceCommit(name string) error {
if !m.reloadPrepared.CompareAndSwap(true, false) {
err := errors.ErrNamespaceNotPrepared
log.Warn("commit namespace error, namespace: %s, err: %v", err)
log.Warn("commit namespace error, namespace: %s, err: %v", name, err)
return err
}

Expand Down

0 comments on commit b065ccb

Please sign in to comment.