-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Use debug logging instead for Azure tests #44672
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
Conversation
These Azure tests have hard println statements which means we always see these messages during configuration. Yet, there are unnecessary most of the time. This commit changes them to use debug logging.
Pinging @elastic/es-distributed |
This removes these statements which always appear during configuration:
Perhaps these log messages are not needed at all, but this PR takes the conservative approach of assuming they are needed, but not dumping them to the console in configuration for every build. |
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.
@jasontedor thanks! These were actually put in place to verify that the 3rd party tests on CI are correctly configured. I don't think that's necessary anymore (the 3rd party tests work now and with recent changes we have other ways of verifying what credentials are used anyway). Feel free to just remove this logging if you want.
These Azure tests have hard println statements which means we always see these messages during configuration. Yet, there are unnecessary most of the time. This commit changes them to use debug logging.
These Azure tests have hard println statements which means we always see these messages during configuration. Yet, there are unnecessary most of the time. This commit changes them to use debug logging.
This commit removes some unneeded debugging logging statements from the Azure storage tests. Relates #44672
This commit removes some unneeded debugging logging statements from the Azure storage tests. Relates #44672
This commit removes some unneeded debugging logging statements from the Azure storage tests. Relates #44672
I pushed 56d47d0. |
These Azure tests have hard println statements which means we always see these messages during configuration. Yet, there are unnecessary most of the time. This commit changes them to use debug logging.