Skip to content

Commit

Permalink
Merge pull request #6336 from gg-dim/master
Browse files Browse the repository at this point in the history
Print remote agent stack traces to the System.err instead of remote console
  • Loading branch information
pkriens authored Oct 28, 2024
2 parents e4866e4 + 8bb0aec commit 3bdbe71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biz.aQute.remote/src/aQute/remote/agent/AgentServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ public void frameworkEvent(FrameworkEvent event) {

private void printStack(Exception e1) {
try {
e1.printStackTrace(redirector.getOut());
e1.printStackTrace();
} catch (Exception e) {
//
}
Expand Down

0 comments on commit 3bdbe71

Please sign in to comment.