Merge pull request #695 from wnuke/master

Make util.LogUtil append to file instead of overwriting it.
This commit is contained in:
Dominika 2020-04-13 17:41:39 -04:00 committed by GitHub
commit a4a8e1fa17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class LogUtil {
public static void writeCoords(int x, int y, int z, String locationName) {
try {
FileWriter fW = new FileWriter("KAMIBlueCoords.txt");
FileWriter fW = new FileWriter("KAMIBlueCoords.txt", true);
fW.write(formatter(x, y, z, locationName));
fW.close();
} catch (IOException e) {