MyApp
Here is the current options:
all turn-debugging SSL turn on SSL debugging the following can used wit H Ssl:record enable Per-record tracing handshake print each handshake message Keygen print key generation data Session print session Activity Defaultctx Print default SSL initialization sslctx print sslcontext tracing sessioncache print SE Ssion Cache tracing Keymanager Print Key Manager Tracing TrustManager Print Trust manager tr Acing handshake debugging can be widened with:data hex dump of each handshake message Verbose verbose handshake message printing record debugging can be widened with:plaintext Hex dump of record plaintext packet print raw SSL/TLS packets
- To view all debugging messages:
Java-djavax.net.debug=all MyApp
- To view the hexadecimal dumps of each handshake message, you can type the following, where the colons is optional:
Java-djavax.net.debug=ssl:handshake:data MyApp
- To view the hexadecimal dumps of each handshake message, and to print trust manager tracing, you can type the following, W Here the commas is optional:
Java-djavax.net.debug=ssl,handshake,data,trustmanager MyApp
Java View SSL Log