Skip to content

Commit

Permalink
[FIXED JENKINS-11875] Use -q1 to switch of verbose output of graphviz
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfs committed Nov 13, 2012
1 parent eea4d3e commit cc12902
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -141,7 +141,7 @@ private void runDot(OutputStream output, InputStream input, String type)
Launcher launcher = Hudson.getInstance().createLauncher(new LogTaskListener(LOGGER, Level.CONFIG));
try {
launcher.launch()
.cmds(dotPath,"-T" + type, "-Gcharset=UTF-8")
.cmds(dotPath,"-T" + type, "-Gcharset=UTF-8", "-q1")
.stdin(input)
.stdout(output)
.start().join();
Expand Down

0 comments on commit cc12902

Please sign in to comment.