File tree Expand file tree Collapse file tree
core/src/main/java/edu/wpi/grip/core
ui/src/main/java/edu/wpi/grip/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -87,6 +87,3 @@ bower_components
8787# Generated files should be ignored as the are regenerated as a build step
8888* /src /generated
8989/bin /
90-
91- # Logging output file
92- /ui /GRIP.log
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public static void main(String[] args) throws Exception {
2525 Handler fileHandler = null ;//This will be our handler for the global logger
2626
2727 try {
28- fileHandler = new FileHandler (". /GRIP.log" );//Log to the file "GRIPlogger.log"
28+ fileHandler = new FileHandler ("%h /GRIP.log" );//Log to the file "GRIPlogger.log"
2929
3030 globalLogger .addHandler (fileHandler );//Add the handler to the global logger
3131
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public void start(Stage stage) {
3535 Handler fileHandler = null ;//This will be our handler for the global logger
3636
3737 try {
38- fileHandler = new FileHandler (". /GRIP.log" );//Log to the file "GRIPlogger .log"
38+ fileHandler = new FileHandler ("%h /GRIP.log" );//Log to the file "GRIP .log"
3939
4040 globalLogger .addHandler (fileHandler );//Add the handler to the global logger
4141
You can’t perform that action at this time.
0 commit comments