-
Notifications
You must be signed in to change notification settings - Fork 193
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
Change the node_handler log to trace #2644
Conversation
As the log from areNodesEquivalent is getting printed at regular intervals change it to trace. Signed-off-by: Sridhar Gaddam <[email protected]>
🤖 Created branch: z_pr2644/sridhargaddam/modify-logging |
@@ -62,7 +62,7 @@ func (d *DatastoreSyncer) areNodesEquivalent(obj1, obj2 *unstructured.Unstructur | |||
existingGlobalIP := obj1.GetAnnotations()[constants.SmGlobalIP] | |||
newGlobalIP := obj2.GetAnnotations()[constants.SmGlobalIP] | |||
|
|||
logger.V(log.DEBUG).Infof("areNodesEquivalent called for %q, existingGlobalIP %q, newGlobalIP %q", | |||
logger.V(log.TRACE).Infof("areNodesEquivalent called for %q, existingGlobalIP %q, newGlobalIP %q", |
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.
I don't think think we need this log at all but TRACE is fine.
🤖 Closed branches: [z_pr2644/sridhargaddam/modify-logging] |
As the log from areNodesEquivalent is getting printed at regular intervals change it to trace.