Browse Source

AccountUpdateWorker now gets the correct logger

master
Chris Smith 15 years ago
parent
commit
f70fb73f9b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/uk/co/md87/evetool/ui/workers/AccountUpdateWorker.java

+ 1
- 1
src/uk/co/md87/evetool/ui/workers/AccountUpdateWorker.java View File

@@ -130,7 +130,7 @@ public class AccountUpdateWorker extends SwingWorker<ApiResponse<CharacterList>,
130 130
             }
131 131
             target.revalidate();
132 132
         } catch (Exception ex) {
133
-            Logger.getLogger(OverviewPage.class.getName()).log(Level.SEVERE, null, ex);
133
+            Logger.getLogger(AccountUpdateWorker.class.getName()).log(Level.SEVERE, null, ex);
134 134
         }
135 135
     }
136 136
 

Loading…
Cancel
Save