From 482c07ed8aa6b371a3fbd0932530dd0110e11bea Mon Sep 17 00:00:00 2001 From: fescen9 Date: Mon, 6 Dec 2010 00:18:57 +0000 Subject: [PATCH] Don't log FileNotFoundException when trying to load markers.csv. The file is not required unless there are markers. --- MapManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MapManager.java b/MapManager.java index 5b3a5000..135760d6 100644 --- a/MapManager.java +++ b/MapManager.java @@ -510,7 +510,7 @@ public class MapManager extends Thread { } catch(FileNotFoundException e) { - log.log(Level.SEVERE, "markers.csv not found", e); + // No need to log FileNotFoundException } finally {