Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
Logs from Trigger scripts are not visible in server log
We wrote the logs in trigger script same as given in the ptc help document e.g. function print(msg, level) {
if (level == null) level = 5;
Packages.mks.util.Logger.message("MYTRIGGER", level, msg);
}
but when we run the script, these logs are not visible in server logs.
Solved! Go to Solution.
That code only tells the RV&S server to output the log lines to the MYTRIGGER category. You then need to enable that logging category like you do with any other:
im logging --category=MYTRIGGER --on
That code only tells the RV&S server to output the log lines to the MYTRIGGER category. You then need to enable that logging category like you do with any other:
im logging --category=MYTRIGGER --on
Thank you for help, it's working now.