Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
linenumberstrue
public Object execute(Map properties) {
	.
	.
	AppDefinition appDef = (AppDefinition) properties.get("appDef");
	.
	.
	.
	String appInfoAndMessage = appDef.toString() + "- Something happened";
	LogUtil.error(EmailTool.class.getName(), ex, appInfoAndMessage);
	.
}

...