

|
|
• Changes to this setting are not saved when RAC is closed.
• When DEBUG logging is applied, the IP address and port numbers of remote connections are displayed in the tw-ra-client.log file.
|
{
"appenders": {
"out": {
"type": "stdout"
},
"outFilter": {
"type": "logLevelFilter",
"appender": "out",
"level": "info"
},
"logFile": {
"type": "file",
"filename": "<path_to_file>/tw-ra-client/tw-ra-client.log",
"level": "debug",
"maxLogSize": 10485760,
"backups": 5,
"keepFileExt": true
}
},
"categories": {
"default": {
"appenders": [
"outFilter",
"logFile"
],
"level": "debug"
}
}
}
|
|
On Windows, the full path to the file is required. You can include a relative path to the file on Mac OS and Linux. However, we recommend adding the full path.
|
|
|
Saving trace logs can increase the size of the log file significantly.
|
{
"appenders": {
"out": {
"type": "stdout"
},
"outFilter": {
"type": "logLevelFilter",
"appender": "out",
"level": "info"
},
"logFile": {
"type": "file",
"filename": "C:/Users/racuser/AppData/Roaming/tw-ra-client/tw-ra-client.log",
"level": "debug",
"maxLogSize": 10485760,
"backups": 5,
"keepFileExt": true
}
},
"categories": {
"default": {
"appenders": [
"outFilter",
"logFile"
],
"level": "debug"
}
}
}