System Log Context

  • System Log context is very useful during rules engine code development. You can print regular debugging information into the platform's log file for later inspection

  • Context Variable: LOG

API Interface

void info(String msg);

void info(String format, Object... args);

void info(Throwable e);

void trace(Throwable e);

void trace(String format, Object... args);

void trace(String msg);

void debug(Throwable e);

void debug(String format, Object... args);

void debug(String msg);

void error(Throwable e);

void error(String msg);

void error(String format, Object... args);

void warn(String format, Object... args);

void warn(Throwable e);

void warn(String msg);