mirror of
https://github.com/kami-blue/client
synced 2025-02-22 00:06:49 +00:00
Merge pull request #695 from wnuke/master
Make util.LogUtil append to file instead of overwriting it.
This commit is contained in:
commit
a4a8e1fa17
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user