Skip to content

Commit

Permalink
Consistent logging tags
Browse files Browse the repository at this point in the history
  • Loading branch information
emlautarom1 committed May 23, 2024
1 parent b69d900 commit 9d45fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operator/avs_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,10 @@ func (avsManager *AvsManager) DeregisterOperator(blsKeyPair *bls.KeyPair) error

_, err := avsManager.avsWriter.DeregisterOperator(context.Background(), quorumNumbers, pubKey)
if err != nil {
avsManager.logger.Errorf("Unable to deregister operator with avs registry coordinator: %v", err)
avsManager.logger.Error("Unable to deregister operator with avs registry coordinator", "err", err)
return err
}
avsManager.logger.Infof("Deregistered operator with avs registry coordinator.")
avsManager.logger.Info("Deregistered operator with avs registry coordinator")

return nil
}
Expand Down

0 comments on commit 9d45fbe

Please sign in to comment.