We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 986d67f commit d971478Copy full SHA for d971478
app/src/processing/app/AbstractTextMonitor.java
@@ -47,7 +47,7 @@ public abstract class AbstractTextMonitor extends AbstractMonitor {
47
48
public AbstractTextMonitor(BoardPort boardPort) {
49
super(boardPort);
50
- logDateFormat = new SimpleDateFormat("HH:mm:ss.SSS");
+ logDateFormat = new SimpleDateFormat("HH:mm:ss.SSS -> ");
51
}
52
53
protected void onCreateWindow(Container mainPane) {
@@ -192,7 +192,6 @@ public void run() {
192
while (tokenizer.hasMoreTokens()) {
193
if (isStartingLine) {
194
out.append(now);
195
- out.append(" -> ");
196
197
String token = tokenizer.nextToken();
198
out.append(token);
0 commit comments