We are migrating from Unix to windows and I'm wondering what and how those who have gone before me are dealing with the lase log format.
Unix was so easy to read:
SecClass=ACFiles
RuleText=if(table.SECURITY_CD == 888)
{
'ALL_ACCESS,'
}
else
{
'NO_ACCESS,'
}
ruleResult=NO_ACCESS,
Windows appears as follows:
16-12-21 08:33:45:142 275 default.FINEST author.runtime.LawsonSecurityRequestOptImpl.evaluateNonContentNodeSecurity(): USER: jdoe, nodeName=ELG$_$COMPEMP
SecClass=ESSFile
RuleText=if(user.getCompany()==lztrim(COMPANY)&&user.getEmployeeId()==lztrim(EMPLOYEE))
{
'ALL_ACCESS,'
}
else
{
'NO_ACCESS,'
}

ruleResult=NO_ACCESS,
How do you troubleshoot? It's so hard to read these now.
Any suggestions would be greatly appreciated.