Skip to content

Commit

Permalink
[FIXED JENKINS-11873] don't say proceeding with anonouymous because w…
Browse files Browse the repository at this point in the history
…e might not
  • Loading branch information
kohsuke committed Dec 17, 2011
1 parent 8ad2502 commit eec3746
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -59,6 +59,9 @@
Update center UI improvement. "Install" button is now always visisble.
<li class=bug>
Fixed a bug where a large output from Maven can cause module log output to go out of sync with module build log files.
<li class=bug>
Confusing error message when the --username option is used on the system with the .ssh directory.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11873">issue 11873</a>)
<li class=bug>
Fixed prematurely re-drawn matrix test result graph.
</ul>
Expand Down
4 changes: 2 additions & 2 deletions cli/src/main/java/hudson/cli/CLI.java
Expand Up @@ -319,8 +319,8 @@ public static int _main(String[] _args) throws Exception {
LOGGER.log(FINE,e.getMessage(),e);
return -1;
}
System.err.println("Failed to authenticate with your SSH keys. Proceeding with anonymous access");
LOGGER.log(FINE,"Failed to authenticate with your SSH keys. Proceeding with anonymous access",e);
System.err.println("Failed to authenticate with your SSH keys.");
LOGGER.log(FINE,"Failed to authenticate with your SSH keys.",e);
}
}

Expand Down

0 comments on commit eec3746

Please sign in to comment.