-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Log message improvements #70
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Left two comments on small changes.
node/node.go
Outdated
@@ -179,6 +179,8 @@ func (n *Node) Start(ctx context.Context) error { | |||
if err != nil { | |||
return fmt.Errorf("failed to register the operator: %w", err) | |||
} | |||
} else { | |||
n.Logger.Info("The node is started, but it's not opt-in in EigenDA yet (it's not receiving and validating data in EigenDA). To register, please follow the guide in https://docs.eigenlayer.xyz/operator-guides/avs-installation-and-registration/eigenda-operator-guide/eigenda-avs-installation-and-registration") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super helpful!
There might be a typo at the "opt-in in" vs "opt-in to"?
If we can avoid direct links to the docs URL that would be safest. Those URLs are unfortunately, subject to change in the near-mid term.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replaced it with the github repo which should be stable.
Why are these changes needed?
Log message improvement based on feedback
Checks