The PTC Community is on temporary read only status in preparation for moving our community to a new platform. Learn more here
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.
