This post is older than a year. Consider some information might not be accurate anymore.
The RiskShield Servers provide the capability to filter log messages, since log4j is under the hood. Especially in early stages, the INFO
or DEBUG
messages may produce too much “noise” to see the misconfiguration or problems the RiskShield Server is telling you. To filter only the log entries with incorrect content (WARN
, ERROR
, FATAL
) you can use the show option to limit to these messages.
Following configuration in your server.ini
limit the messages:
[ConsoleLogging]
Enable = ${DecisionServerConsoleLogging}
;Show = ${DecisionServerConsoleLoggingShow}
Show = W, E, F
Hide = STA
DataLine = "%I | %C | %T | %M"
This will result to shortened output and enables you to pinpoint your configuration problems.