Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
While using beanshellBeanShell, if we need to log the messages (info, error, warnwarning) properly in joget.log file, we can use the joget LogUtil api. Its It is a very handy feature.
Code Block |
---|
// logging message - info LogUtil.info("ClassName","Message"); // logging message - warn LogUtil.warn("ClassName","Message"); // logging message - error LogUtil.error("ClassName",Exception,"Message"); |
...