-
Improvement
-
Resolution: Fixed
-
Minor
-
None
-
Jenkins 1.8.2
CVS Plugin ver 2.5
When the 'use update' checkbox is unchecked, whole (generally unessential) output of cvs checkout gets printed to console.
Suggested improvement:
'quiet mode' switch could be provided for -q or -Q option/flag.
This switch will give user more control as during normal operation the cvs output can be restricted to a minimum; and during debug, everything can be blurted out to the console.
- duplicates
-
JENKINS-15133 Provide CVS Plugin with "Quiet" and "Really Quiet" options
-
- Closed
-
- is duplicated by
-
JENKINS-15880 Please add a configurable 'quiet'/'really quiet' (-q/-Q) switch for the CVS Plugin
-
- Closed
-
As per your previous defect, the issue is being caused by CVS printing progress commands to System.err, and info commands to System.out. -Q/-q only affects System.out, we'd have to catch System.err and filter it if we wanted to restrict the output, but then we have to be careful that we're not hiding any error messages. This would be covered by the current 'Show All CVS Output' checkbox, but isn't something that can be modified by changing the CVS command we run.