Skip to content

Commit

Permalink
refactor: change logging to Log.err
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharlottes committed Dec 6, 2023
1 parent f260624 commit 708490a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/informatis/core/Pathfinder.java
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public void run(){
return;
}
}catch(Throwable e){
e.printStackTrace();
Log.err(e);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,8 @@ void fill(int x, int y, boolean replace, Boolf<Tile> tester, Cons<Tile> filler){
//hack
stack = null;
System.gc();
e.printStackTrace();
stack = new IntSeq();
Log.err(e);
}
}
}
Expand Down

0 comments on commit 708490a

Please sign in to comment.