use of alien4cloud.topology.task.LogTask in project alien4cloud by alien4cloud.
the class FlowExecutionLog method info.
public void info(String message, Object... args) {
FormattingTuple ft = MessageFormatter.arrayFormat(message, args);
infos.add(new LogTask(ft.getMessage()));
}
use of alien4cloud.topology.task.LogTask in project alien4cloud by alien4cloud.
the class FlowExecutionLog method error.
public void error(String message, Object... args) {
FormattingTuple ft = MessageFormatter.arrayFormat(message, args);
errors.add(new LogTask(ft.getMessage()));
}
use of alien4cloud.topology.task.LogTask in project alien4cloud by alien4cloud.
the class FlowExecutionLog method warn.
public void warn(String message, Object... args) {
FormattingTuple ft = MessageFormatter.arrayFormat(message, args);
warnings.add(new LogTask(ft.getMessage()));
}
Aggregations