Disabled logging data to CSV file now we have the database data logging working

This commit is contained in:
Graham Jones
2022-01-10 20:39:31 +00:00
parent dc5719c64c
commit 01e07f2e12

View File

@@ -1112,8 +1112,8 @@ public class SdServer extends Service implements SdDataReceiver {
*/ */
public void logData() { public void logData() {
if (mLogData) { if (mLogData) {
Log.v(TAG, "logData() - writing data to SD Card"); Log.v(TAG, "logData() - writing data to Database");
writeToSD(); //writeToSD();
mLm.writeToLocalDb(mSdData); mLm.writeToLocalDb(mSdData);
} }
} }