Reputation: 1579
In my XPages application, I want to debug a problem related to javax.net. Therefore I set the system property javax.net.debug=all
. Unfortunately, the debug information is not written to the Domino server console and I cannot find it in any of the logs on the server.
Can anybody tell me how to get that debug output?
Upvotes: 1
Views: 724
Reputation: 146
javax.net.debug=all
to file \Domino\data\domino\workspace\.config\rcpinstall.properties
Upvotes: 1
Reputation: 10485
1) In your Notes.ini, create an entry for an options file, i.e.
JavaOptionsFile=C:\IBM\Domino9\MyJavaOptions.txt
2) Create this file and add this line
-Djavax.net.debug=all
3) Save it & restart the server
4) Open log.nsf to see what happens - the server console is no longer useable, too much debug information!
Upvotes: 4