Websocket Log
You can enable a special logger that will generate then a file with all the messages going to the client and coming from the client.
This will generate a lot of logging so it is not recommended to have this enabled in a production environment (by default).
This can be changed in the log4j.xml file that you deploy, to enable it there first add this in the <Appenders>
section:
Just before the
then add a Logger in the <Loggers>
section:
This will generate quite a big file very fast, because it will log all the messages of all the NGClient users.
It does this in the format:
time|sessionid|windowid|clientid|username|R/S|message
R= Receive (from the client)
S= Send (to the client)
Last updated
Was this helpful?