Skip to content

Commit

Permalink
More specific peer error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed Feb 3, 2025
1 parent 858b8d3 commit ebbf016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convex-peer/src/main/java/convex/peer/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private Peer establishPeer() throws ConfigException, LaunchException, Interrupte
return Peer.createGenesisPeer(keyPair,genesisState);

} catch (IOException e) {
throw new LaunchException("IO Exception while establishing peer",e);
throw new LaunchException("IO Exception while establishing peer: "+e,e);
}
}

Expand Down

0 comments on commit ebbf016

Please sign in to comment.