Commit 758040ed authored by Matt Tucker's avatar Matt Tucker Committed by matt

Logging tweak.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3947 b35dd754-fafc-0310-a699-88a17e54d16e
parent fa74befd
......@@ -271,11 +271,12 @@ public class PluginManager {
if (webRoot != null || classesDir != null) {
dev = new PluginDevEnvironment();
System.out.println(pluginName + " is running in development mode.");
System.out.println("Plugin " + pluginName + " is running in development mode.");
Log.info("Plugin " + pluginName + " is running in development mode.");
if (webRoot != null) {
File webRootDir = new File(webRoot);
if (!webRootDir.exists()) {
// ok, let's try it relative from this plugin dir?
// Ok, let's try it relative from this plugin dir?
webRootDir = new File(pluginDir, webRoot);
}
......
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