Skip to content

Commit

Permalink
Use the Log class!
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Luc Paour committed Sep 4, 2002
1 parent 061fd07 commit 4f262ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions com/gallery/GalleryRemote/GalleryRemote.java
Expand Up @@ -39,7 +39,6 @@ public class GalleryRemote {
private GalleryRemote() {
defaults = new PropertiesFile("defaults");
properties = new PropertiesFile(defaults, "remote");
System.out.println(defaults);
}

private void run() {
Expand All @@ -59,7 +58,7 @@ private void run() {
mainFrame.initComponents();
}
catch ( Exception e ) {
e.printStackTrace();
Log.logException(Log.CRITICAL, "Startup", e);
}
}

Expand Down

0 comments on commit 4f262ac

Please sign in to comment.