浏览代码

Remove end of line in logging so that a job report is in one single line.

tags/Production_2016_10_17
ymlam 9 年前
父节点
当前提交
87b7e197dc
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/altk/comm/engine/JobReport.java

+ 2
- 2
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("<start_time>" + startTime/1000 + "</start_time>\r\n");
+ "\" recipient_status=\"" + jobStatus + "\" >");
xml.append("<start_time>" + startTime/1000 + "</start_time>");
xml = appendSpecificXML(xml);
if (errorText != null && errorText.length() > 0)
{


正在加载...
取消
保存