bug 9470: line breaks removed for task failed message

status 9470: resolved fixed
This commit is contained in:
Abhinandan Prateek 2011-04-22 09:09:33 +05:30
parent b219d3e83e
commit e97e09c7d6
1 changed files with 1 additions and 1 deletions

View File

@ -2716,7 +2716,7 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
if (task.getStatus(c) == Types.TaskStatusType.SUCCESS) {
return;
} else {
String msg = "Task failed! Task record:\n" + task.getRecord(c);
String msg = "Task failed! Task record: " + task.getRecord(c);
s_logger.warn(msg);
task.cancel(c);
throw new Types.BadAsyncResult(msg);