From 87b7e197dcb1873df69a3ed316f518a57390c90a Mon Sep 17 00:00:00 2001 From: ymlam Date: Tue, 18 Oct 2016 03:01:23 +0000 Subject: [PATCH] Remove end of line in logging so that a job report is in one single line. --- src/altk/comm/engine/JobReport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/altk/comm/engine/JobReport.java b/src/altk/comm/engine/JobReport.java index 9789278..57e4cf7 100644 --- a/src/altk/comm/engine/JobReport.java +++ b/src/altk/comm/engine/JobReport.java @@ -60,8 +60,8 @@ public class JobReport + "\" launch_record_id=\"" + launchRecordId + "\" " + activityRecordIdParamName + "=\"" + recordId + "\" contact_id=\"" + contactId - + "\" recipient_status=\"" + jobStatus + "\" >\r\n"); - xml.append("" + startTime/1000 + "\r\n"); + + "\" recipient_status=\"" + jobStatus + "\" >"); + xml.append("" + startTime/1000 + ""); xml = appendSpecificXML(xml); if (errorText != null && errorText.length() > 0) {