forked from xwiki-contrib/application-task
-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Description
To ease debugging, please convert some warnings to errors with stack traces in TaskMacroUpdateEventListener, for instance:
logger.warn("Failed to retrieve the document that contains the Task Object with id [{}]: [{}].",
taskReference, ExceptionUtils.getRootCauseMessage(e));
to:
logger.error("Failed to retrieve the document that contains the Task Object with id [{}]",
taskReference, e);
Reactions are currently unavailable