-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Make copy_reference_file quieter #89
Conversation
Produces way too much output if you have a lot of files in `/usr/share/jenkins/ref`. @reviewbybees
but this is useful to diagnose bootstrap issues. Could maybe support some -q flag (or add -verbose) to disable output |
I think it should be quiet by default. If you need to diagnose anything, these messages could be written to a log file inside the container. |
docker practice is to send logs to stdout, so that |
Well it is just too much noise for something you do not normally want to look at, when as a user you are interested in the Jenkins log, not some file copying inside the container. It is only because of the |
sure, but jenkins design to merge config and plugin files in jenkins_home doens't help :-P |
Thank you for a pull request! Please check this document for how the Jenkins project handles pull requests |
Make copy_reference_file quieter
Amend Java 11 documentation to reflect the GA status of Java 11 in Jenkins
Produces way too much output if you have a lot of files in
/usr/share/jenkins/ref
. @reviewbybees