Skip to content

Commit

Permalink
finally migrate fix oc path logging to verbose only
Browse files Browse the repository at this point in the history
  • Loading branch information
gabemontero committed Jun 6, 2019
1 parent 531be5a commit b95a842
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,11 @@ public static String[] fixPathInCommandArray(String[] command, EnvVars envVars,
return command;
}
if (foundOcs == null || foundOcs.size() == 0) {
listener.getLogger().println("could not find oc binary on the target computer of OS type " + targetType);
if (verbose)
listener.getLogger().println("could not find oc binary on the target computer of OS type " + targetType);
if (!(launcher instanceof RemoteLauncher) || !(launcher instanceof LocalLauncher)) {
listener.getLogger().println("but your launcher is of a type that might have hindered out scan");
if (verbose)
listener.getLogger().println("but your launcher is of a type that might have hindered out scan");
}
} else {
if (verbose)
Expand Down

0 comments on commit b95a842

Please sign in to comment.