Commit 8b61ade5 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Fixed debug message.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@5265 b35dd754-fafc-0310-a699-88a17e54d16e
parent e3cc9fae
...@@ -971,7 +971,7 @@ public class PluginManager { ...@@ -971,7 +971,7 @@ public class PluginManager {
for (String file : children) { for (String file : children) {
boolean success = deleteDir(new File(dir, file)); boolean success = deleteDir(new File(dir, file));
if (!success) { if (!success) {
System.out.println("could not delete: " + new File(dir, file)); Log.debug("Plugin removal: could not delete: " + new File(dir, file));
return false; return false;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment