1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 17:45:08 +02:00

Better use of logger.

Signed-off-by: Paul Buonopane <techsoftadvanced@gmail.com>
This commit is contained in:
Paul Buonopane
2012-02-23 12:27:23 -05:00
parent a865c9ad01
commit 0039f73fb3

View File

@@ -69,7 +69,7 @@ public abstract class AbstractDelayedYamlFileReader<T extends StorageObject> imp
catch (FileNotFoundException ex) catch (FileNotFoundException ex)
{ {
onException(ex); onException(ex);
Bukkit.getLogger().log(Level.INFO, "File not found: " + file.toString()); Bukkit.getLogger().log(Level.INFO, "File not found: {0}", file.toString());
} }
catch (ObjectLoadException ex) catch (ObjectLoadException ex)
{ {