minor update to logging statement

Former-commit-id: bdf69f0747e0dbf4a368050df95b5650960420ad
This commit is contained in:
Jeremy Long
2014-03-03 07:05:24 -05:00
parent c47b2f5b18
commit 9bb630bae6

View File

@@ -245,11 +245,8 @@ public class StandardUpdate {
}
} catch (NumberFormatException ex) {
final String msg = "An invalid schema version or timestamp exists in the data.properties file.";
Logger
.getLogger(StandardUpdate.class
.getName()).log(Level.WARNING, msg);
Logger.getLogger(StandardUpdate.class
.getName()).log(Level.FINE, null, ex);
Logger.getLogger(StandardUpdate.class.getName()).log(Level.WARNING, msg);
Logger.getLogger(StandardUpdate.class.getName()).log(Level.FINE, "", ex);
}
}
return updates;