Skip to content

Commit

Permalink
adjust logging levels (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pitterling committed Sep 27, 2018
1 parent bd7d83a commit 6b8f316
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/main/java/net/atomique/ksar/Main.java
Expand Up @@ -64,9 +64,9 @@ public static void main(String[] args) {
int i = 0;
String arg;

log.trace("ksar Version : {}", VersionNumber.getVersionString());
log.debug("Java runtime Version : {}", System.getProperty("java.runtime.version"));
log.debug("Java runtime architecture : {}", System.getProperty("os.arch"));
log.info("ksar Version : {}", VersionNumber.getVersionString());
log.info("Java runtime Version : {}", System.getProperty("java.runtime.version"));
log.info("Java runtime architecture : {}", System.getProperty("os.arch"));

/// load default - Mac OS X Application Properties
String mrjVersion = System.getProperty("mrj.version");
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/atomique/ksar/XMLConfig.java
Expand Up @@ -296,7 +296,7 @@ public void endElement(String uri, String localName, String qName) throws SAXExc
if (currentColor.is_valid()) {
GlobalOptions.getColorlist().put(currentColor.getData_title(), currentColor);
} else {
log.error("Err: {}", currentColor.getError_message());
//log.error("Err: {}", currentColor.getError_message());
currentColor = null;
}
in_color = false;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/atomique/ksar/ui/Desktop.java
Expand Up @@ -40,7 +40,7 @@ public Desktop() {
GraphicsConfiguration gc = gd.getDefaultConfiguration();

Rectangle screenBounds = gc.getBounds();
log.trace("screen [{}] boundaries: {}", j, screenBounds.toString());
log.debug("screen [{}] boundaries: {}", j, screenBounds.toString());

//use screen0 boundaries for Desktop placement
if ( j == 0 ) {
Expand All @@ -55,7 +55,7 @@ public Desktop() {
initComponents();

setBounds(desktopBounds);
log.trace("desktop window boundaries: {}", this.getBounds().toString());
log.debug("desktop window boundaries: {}", this.getBounds().toString());

DesktopPane.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
setVisible(true);
Expand Down

0 comments on commit 6b8f316

Please sign in to comment.