Skip to content

Commit

Permalink
make the current, very not good code run correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
DaMatrix committed Nov 22, 2019
1 parent dab74dd commit 74fd60d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ allprojects {
ext {
//general things
javaVersion = "1.8"
datadumperVersion = "0.4.0"
datadumperVersion = "0.0.1-SNAPSHOT"

//dependency things
gsonVersion = "2.8.5"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/daporkchop/datadumper/DataDumper.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class DataDumper implements Logging {

public static void main(String... args) throws IOException {
logger.enableANSI()
.addFile(new File("output.log"), LogAmount.DEBUG)
.addFile(new File("output.log").getAbsoluteFile(), LogAmount.DEBUG)
.setLogAmount(LogAmount.DEBUG);

if (true) {
Expand Down

0 comments on commit 74fd60d

Please sign in to comment.