1
0

change System.out.println to pDebug

This commit is contained in:
2023-06-09 16:23:59 +02:00
parent fd293b15e1
commit 6ea85aa945
3 changed files with 8 additions and 6 deletions

View File

@@ -3,6 +3,7 @@ package ch.hevs.isi.field;
import ch.hevs.isi.core.DataPoint;
import ch.hevs.isi.core.DataPointListener;
import ch.hevs.isi.core.FloatDataPoint;
import ch.hevs.isi.utils.Utility;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
@@ -89,7 +90,7 @@ public class FieldConnector implements DataPointListener {
}
private void pushToField(String label, String value){
System.out.println("Field: " + label + " " + value);
Utility.pDebug("Field: " + label + " " + value);
}
@Override
public void onNewValue(DataPoint dp) {