Windchill RV&S 13.1.01: Logs from Trigger scripts are not visible in server log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Windchill RV&S 13.1.01: Logs from Trigger scripts are not visible in server log
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.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you for help, it's working now.
