another occurrence of printStackTrace that should only be run if

GlobalConfiguration.debugplugins is true
This commit is contained in:
zyro
2014-07-09 16:52:53 +02:00
parent bbfd4a0d77
commit 6745d4720a

View File

@@ -288,7 +288,9 @@ public class SpringPlugin implements LoadtimeInstrumentationPlugin, ReloadEventP
}
}
} catch (Exception e) {
e.printStackTrace();
if (GlobalConfiguration.debugplugins) {
e.printStackTrace();
}
}
}
}