Improved logging on failed updates

Former-commit-id: 61f2ba2acd867043f92904f1e1f038a25355f155
This commit is contained in:
Jeremy Long
2013-05-13 11:52:54 -04:00
parent 68084c4567
commit 8fe80a4507

View File

@@ -250,7 +250,9 @@ public class Engine {
source.update();
} catch (UpdateException ex) {
Logger.getLogger(Engine.class.getName()).log(Level.WARNING,
"Unable to update " + source.getClass().getName(), ex);
"Unable to update " + source.getClass().getName());
Logger.getLogger(Engine.class.getName()).log(Level.INFO,
"Unable to update details for " + source.getClass().getName(), ex);
}
}
}