Append the event and not the word event to trade log

This commit is contained in:
snowleo 2011-07-18 04:58:55 +02:00
parent 5aa2bc1706
commit a3c71e4617

View File

@ -150,7 +150,7 @@ public class Trade
}
}
StringBuilder sb = new StringBuilder();
sb.append(type).append(",").append(subtype).append(",").append("event").append(",\"");
sb.append(type).append(",").append(subtype).append(",").append(event).append(",\"");
sb.append(DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL).format(new Date()));
sb.append("\",\"");
if (sender != null)