Commit e428cb5e authored by Guus der Kinderen's avatar Guus der Kinderen

OF-1095: Make plugin lifecycle logging uniform.

This commit adds more structure to the logging done when loading and unloading
plugins.

The plugin manager was adapted to create log statements for loading and unloading
each plugin. It also logs to std-out for log statements of priority INFO and above.
This mimics what some (but not all) plugins were doing internally.

There's an added log statement that informs that the loading of the entire set of
plugins has finished (which helps users to determine when Openfire is ready to be
used).

Corresponding log statements from individual plugins have been removed.
parent 7630cc40
...@@ -65,6 +65,21 @@ ...@@ -65,6 +65,21 @@
</layout> </layout>
</appender> </appender>
<appender name="console" class="org.apache.log4j.ConsoleAppender">
<layout class="org.apache.log4j.EnhancedPatternLayout">
<param name="ConversionPattern" value="%m%n%throwable{0}" />
</layout>
<filter class="org.apache.log4j.varia.LevelRangeFilter">
<param name="LevelMin" value="info" />
<param name="AcceptOnMatch" value="true" />
</filter>
</appender>
<!-- OF-1095: Uniform output of loading/unloading of plugins to std-out. -->
<logger name="org.jivesoftware.openfire.container.PluginManager">
<appender-ref ref="console"/>
</logger>
<!-- OF-506: Jetty INFO messages are generally not useful. Ignore them by default. --> <!-- OF-506: Jetty INFO messages are generally not useful. Ignore them by default. -->
<logger name="org.eclipse.jetty"> <logger name="org.eclipse.jetty">
<level value="warn" /> <level value="warn" />
......
...@@ -323,7 +323,7 @@ public class AdminConsolePlugin implements Plugin { ...@@ -323,7 +323,7 @@ public class AdminConsolePlugin implements Plugin {
adminServer.start(); adminServer.start();
} }
catch (Exception e) { catch (Exception e) {
Log.error(e.getMessage(), e); Log.error("An exception occurred while restarting the admin console:", e);
} }
} }
......
...@@ -124,17 +124,19 @@ public class PluginManager { ...@@ -124,17 +124,19 @@ public class PluginManager {
* Shuts down all running plugins. * Shuts down all running plugins.
*/ */
public void shutdown() { public void shutdown() {
Log.info("Shutting down. Unloading all installed plugins...");
// Stop the plugin monitoring service. // Stop the plugin monitoring service.
if (executor != null) { if (executor != null) {
executor.shutdown(); executor.shutdown();
} }
// Shutdown all installed plugins. // Shutdown all installed plugins.
for (Plugin plugin : plugins.values()) { for (Map.Entry<String, Plugin> plugin : plugins.entrySet()) {
try { try {
plugin.destroyPlugin(); plugin.getValue().destroyPlugin();
Log.info("Unloaded plugin '{}'.", plugin.getKey());
} }
catch (Exception e) { catch (Exception e) {
Log.error(e.getMessage(), e); Log.error("An exception occurred while trying to unload plugin '{}':", plugin.getKey(), e);
} }
} }
plugins.clear(); plugins.clear();
...@@ -154,8 +156,12 @@ public class PluginManager { ...@@ -154,8 +156,12 @@ public class PluginManager {
* @return true if the plugin was successfully installed or updated. * @return true if the plugin was successfully installed or updated.
*/ */
public boolean installPlugin(InputStream in, String pluginFilename) { public boolean installPlugin(InputStream in, String pluginFilename) {
if (in == null || pluginFilename == null || pluginFilename.length() < 1) { if ( pluginFilename == null || pluginFilename.isEmpty()) {
Log.error("Error installing plugin: Input stream was null or pluginFilename was null or had no length."); Log.error("Error installing plugin: pluginFilename was null or empty.");
return false;
}
if (in == null) {
Log.error("Error installing plugin '{}': Input stream was null.", pluginFilename);
return false; return false;
} }
try { try {
...@@ -176,7 +182,7 @@ public class PluginManager { ...@@ -176,7 +182,7 @@ public class PluginManager {
pluginMonitor.run(); pluginMonitor.run();
} }
catch (IOException e) { catch (IOException e) {
Log.error("Error installing new version of plugin: " + pluginFilename, e); Log.error("An exception occurred while installing new version of plugin '{}':", pluginFilename, e);
return false; return false;
} }
return true; return true;
...@@ -265,7 +271,8 @@ public class PluginManager { ...@@ -265,7 +271,8 @@ public class PluginManager {
if (XMPPServer.getInstance().isSetupMode() && !(pluginDir.getFileName().toString().equals("admin"))) { if (XMPPServer.getInstance().isSetupMode() && !(pluginDir.getFileName().toString().equals("admin"))) {
return; return;
} }
Log.debug("PluginManager: Loading plugin " + pluginDir.getFileName().toString()); String pluginName = pluginDir.getFileName().toString();
Log.debug("Loading plugin '{}'...", pluginName);
Plugin plugin; Plugin plugin;
try { try {
Path pluginConfig = pluginDir.resolve("plugin.xml"); Path pluginConfig = pluginDir.resolve("plugin.xml");
...@@ -281,10 +288,7 @@ public class PluginManager { ...@@ -281,10 +288,7 @@ public class PluginManager {
Version requiredVersion = new Version(minServerVersion.getTextTrim()); Version requiredVersion = new Version(minServerVersion.getTextTrim());
Version currentVersion = XMPPServer.getInstance().getServerInfo().getVersion(); Version currentVersion = XMPPServer.getInstance().getServerInfo().getVersion();
if (requiredVersion.isNewerThan(currentVersion)) { if (requiredVersion.isNewerThan(currentVersion)) {
String msg = "Ignoring plugin " + pluginDir.getFileName() + ": requires " + Log.warn("Ignoring plugin '{}': requires server version {}. Current server version is {}.", pluginName, requiredVersion, currentVersion);
"server version " + requiredVersion;
Log.warn(msg);
System.out.println(msg);
return; return;
} }
} }
...@@ -295,7 +299,6 @@ public class PluginManager { ...@@ -295,7 +299,6 @@ public class PluginManager {
// re-use the parent plugin's class loader so that the plugins can interact. // re-use the parent plugin's class loader so that the plugins can interact.
Element parentPluginNode = (Element)pluginXML.selectSingleNode("/plugin/parentPlugin"); Element parentPluginNode = (Element)pluginXML.selectSingleNode("/plugin/parentPlugin");
String pluginName = pluginDir.getFileName().toString();
String webRootKey = pluginName + ".webRoot"; String webRootKey = pluginName + ".webRoot";
String classesDirKey = pluginName + ".classes"; String classesDirKey = pluginName + ".classes";
String webRoot = System.getProperty(webRootKey); String webRoot = System.getProperty(webRootKey);
...@@ -326,10 +329,7 @@ public class PluginManager { ...@@ -326,10 +329,7 @@ public class PluginManager {
// plugin load run after the parent. // plugin load run after the parent.
return; return;
} else { } else {
String msg = "Ignoring plugin " + pluginName + ": parent plugin " + Log.warn("Ignoring plugin '{}': parent plugin '{}' not present.", pluginName, parentPlugin);
parentPlugin + " not present.";
Log.warn(msg);
System.out.println(msg);
return; return;
} }
} }
...@@ -346,9 +346,7 @@ public class PluginManager { ...@@ -346,9 +346,7 @@ public class PluginManager {
PluginDevEnvironment dev = null; PluginDevEnvironment dev = null;
if (webRoot != null || classesDir != null) { if (webRoot != null || classesDir != null) {
dev = new PluginDevEnvironment(); dev = new PluginDevEnvironment();
Log.info("Plugin '{}' is running in development mode.", pluginName);
System.out.println("Plugin " + pluginName + " is running in development mode.");
Log.info("Plugin " + pluginName + " is running in development mode.");
if (webRoot != null) { if (webRoot != null) {
Path webRootDir = Paths.get(webRoot); Path webRootDir = Paths.get(webRoot);
if (Files.notExists(webRootDir)) { if (Files.notExists(webRootDir)) {
...@@ -417,10 +415,7 @@ public class PluginManager { ...@@ -417,10 +415,7 @@ public class PluginManager {
// Check the plugin's database schema (if it requires one). // Check the plugin's database schema (if it requires one).
if (!DbConnectionManager.getSchemaManager().checkPluginSchema(plugin)) { if (!DbConnectionManager.getSchemaManager().checkPluginSchema(plugin)) {
// The schema was not there and auto-upgrade failed. // The schema was not there and auto-upgrade failed.
Log.error(pluginName + " - " + Log.error("Error while loading plugin '{}': {}", pluginName, LocaleUtils.getLocalizedString("upgrade.database.failure"));
LocaleUtils.getLocalizedString("upgrade.database.failure"));
System.out.println(pluginName + " - " +
LocaleUtils.getLocalizedString("upgrade.database.failure"));
} }
// Load any JSP's defined by the plugin. // Load any JSP's defined by the plugin.
...@@ -445,6 +440,7 @@ public class PluginManager { ...@@ -445,6 +440,7 @@ public class PluginManager {
ClassLoader oldLoader = Thread.currentThread().getContextClassLoader(); ClassLoader oldLoader = Thread.currentThread().getContextClassLoader();
Thread.currentThread().setContextClassLoader(pluginLoader); Thread.currentThread().setContextClassLoader(pluginLoader);
plugin.initializePlugin(this, pluginDir.toFile()); plugin.initializePlugin(this, pluginDir.toFile());
Log.debug("Initialized plugin '{}'.", pluginName);
Thread.currentThread().setContextClassLoader(oldLoader); Thread.currentThread().setContextClassLoader(oldLoader);
// If there a <adminconsole> section defined, register it. // If there a <adminconsole> section defined, register it.
...@@ -499,12 +495,13 @@ public class PluginManager { ...@@ -499,12 +495,13 @@ public class PluginManager {
firePluginCreatedEvent(pluginName, plugin); firePluginCreatedEvent(pluginName, plugin);
} }
else { else {
Log.warn("Plugin " + pluginDir + " could not be loaded: no plugin.xml file found"); Log.warn("Plugin '{}' could not be loaded: no plugin.xml file found.", pluginName);
} }
} }
catch (Throwable e) { catch (Throwable e) {
Log.error("Error loading plugin: " + pluginDir, e); Log.error("An exception occurred while loading plugin '{}':", pluginName, e);
} }
Log.info( "Successfully loaded plugin '{}'.", pluginName );
} }
private void configureCaches(Path pluginDir, String pluginName) { private void configureCaches(Path pluginDir, String pluginName) {
...@@ -516,7 +513,7 @@ public class PluginManager { ...@@ -516,7 +513,7 @@ public class PluginManager {
configurator.configure(pluginName); configurator.configure(pluginName);
} }
catch (Exception e) { catch (Exception e) {
Log.error(e.getMessage(), e); Log.error("An exception occurred while trying to configure caches for plugin '{}':", pluginName, e);
} }
} }
} }
...@@ -547,7 +544,7 @@ public class PluginManager { ...@@ -547,7 +544,7 @@ public class PluginManager {
* @param pluginName the name of the plugin to unload. * @param pluginName the name of the plugin to unload.
*/ */
public void unloadPlugin(String pluginName) { public void unloadPlugin(String pluginName) {
Log.debug("PluginManager: Unloading plugin " + pluginName); Log.debug("Unloading plugin '{}'...",pluginName);
Plugin plugin = plugins.get(pluginName); Plugin plugin = plugins.get(pluginName);
if (plugin != null) { if (plugin != null) {
...@@ -560,7 +557,7 @@ public class PluginManager { ...@@ -560,7 +557,7 @@ public class PluginManager {
parentPluginMap.get(plugin).toArray(new String[parentPluginMap.get(plugin).size()]); parentPluginMap.get(plugin).toArray(new String[parentPluginMap.get(plugin).size()]);
parentPluginMap.remove(plugin); parentPluginMap.remove(plugin);
for (String childPlugin : childPlugins) { for (String childPlugin : childPlugins) {
Log.debug("Unloading child plugin: " + childPlugin); Log.debug("Unloading child plugin: '{}'.", childPlugin);
childPluginMap.remove(plugins.get(childPlugin)); childPluginMap.remove(plugins.get(childPlugin));
unloadPlugin(childPlugin); unloadPlugin(childPlugin);
} }
...@@ -583,9 +580,10 @@ public class PluginManager { ...@@ -583,9 +580,10 @@ public class PluginManager {
// resources. // resources.
try { try {
plugin.destroyPlugin(); plugin.destroyPlugin();
Log.debug( "Destroyed plugin '{}'.", pluginName );
} }
catch (Exception e) { catch (Exception e) {
Log.error(e.getMessage(), e); Log.error( "An exception occurred while unloading plugin '{}':", pluginName, e);
} }
} }
...@@ -601,7 +599,7 @@ public class PluginManager { ...@@ -601,7 +599,7 @@ public class PluginManager {
if (pluginLoader != null) { if (pluginLoader != null) {
pluginLoader.unloadJarFiles(); pluginLoader.unloadJarFiles();
} else { } else {
Log.warn("No plugin loader found for " + pluginName); Log.warn("No plugin loader found for '{}'.",pluginName);
} }
// Try to remove the folder where the plugin was exploded. If this works then // Try to remove the folder where the plugin was exploded. If this works then
...@@ -615,13 +613,13 @@ public class PluginManager { ...@@ -615,13 +613,13 @@ public class PluginManager {
System.gc(); System.gc();
int count = 0; int count = 0;
while (!deleteDir(dir) && count++ < 5) { while (!deleteDir(dir) && count++ < 5) {
Log.warn("Error unloading plugin " + pluginName + ". " + "Will attempt again momentarily."); Log.warn("Error unloading plugin '{}'. Will attempt again momentarily.", pluginName);
Thread.sleep(8000); Thread.sleep( 8000 );
// Ask the system to clean up references. // Ask the system to clean up references.
System.gc(); System.gc();
} }
} catch (InterruptedException e) { } catch (InterruptedException e) {
Log.error(e.getMessage(), e); Log.debug( "Stopped waiting for plugin '{}' to be fully unloaded.", pluginName, e );
} }
if (plugin != null && Files.notExists(dir)) { if (plugin != null && Files.notExists(dir)) {
...@@ -650,9 +648,10 @@ public class PluginManager { ...@@ -650,9 +648,10 @@ public class PluginManager {
unloadPlugin(parentPluginName); unloadPlugin(parentPluginName);
} }
firePluginDestroyedEvent(pluginName, plugin); firePluginDestroyedEvent(pluginName, plugin);
Log.info("Successfully unloaded plugin '{}'.", pluginName);
} }
else if (plugin != null) { else if (plugin != null) {
// Restore references since we failed to remove the plugin Log.info("Restore references since we failed to remove the plugin '{}'.", pluginName);
plugins.put(pluginName, plugin); plugins.put(pluginName, plugin);
pluginDirs.put(plugin, pluginFile); pluginDirs.put(plugin, pluginFile);
classloaders.put(plugin, pluginLoader); classloaders.put(plugin, pluginLoader);
...@@ -784,7 +783,7 @@ public class PluginManager { ...@@ -784,7 +783,7 @@ public class PluginManager {
return Integer.parseInt(versionString.trim()); return Integer.parseInt(versionString.trim());
} }
catch (NumberFormatException nfe) { catch (NumberFormatException nfe) {
Log.error(nfe.getMessage(), nfe); Log.error("Unable to parse the database version for plugin '{}'.", getName( plugin ), nfe);
} }
} }
return -1; return -1;
...@@ -809,7 +808,7 @@ public class PluginManager { ...@@ -809,7 +808,7 @@ public class PluginManager {
return License.valueOf(licenseString.toLowerCase().trim()); return License.valueOf(licenseString.toLowerCase().trim());
} }
catch (IllegalArgumentException iae) { catch (IllegalArgumentException iae) {
Log.error(iae.getMessage(), iae); Log.error("Unrecognized license type '{}' for plugin '{}'.", licenseString.toLowerCase().trim(), getName( plugin ), iae);
} }
} }
return License.other; return License.other;
...@@ -851,7 +850,7 @@ public class PluginManager { ...@@ -851,7 +850,7 @@ public class PluginManager {
} }
} }
catch (Exception e) { catch (Exception e) {
Log.error(e.getMessage(), e); Log.error("Unable to get element value '{}' from plugin.xml of plugin '{}':", xpath, getName(plugin), e);
} }
return null; return null;
} }
...@@ -939,7 +938,7 @@ public class PluginManager { ...@@ -939,7 +938,7 @@ public class PluginManager {
} }
// Turn the list of JAR/WAR files into a set so that we can do lookups. // Turn the list of JAR/WAR files into a set so that we can do lookups.
Set<String> jarSet = new HashSet<String>(); Set<String> jarSet = new HashSet<>();
try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(pluginDirectory, new DirectoryStream.Filter<Path>() { try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(pluginDirectory, new DirectoryStream.Filter<Path>() {
@Override @Override
...@@ -1014,7 +1013,7 @@ public class PluginManager { ...@@ -1014,7 +1013,7 @@ public class PluginManager {
// due to the JAR file being deleted (ignore admin plugin). // due to the JAR file being deleted (ignore admin plugin).
// Build a list of plugins to delete first so that the plugins // Build a list of plugins to delete first so that the plugins
// keyset isn't modified as we're iterating through it. // keyset isn't modified as we're iterating through it.
List<String> toDelete = new ArrayList<String>(); List<String> toDelete = new ArrayList<>();
for (Path pluginDir : dirs) { for (Path pluginDir : dirs) {
String pluginName = pluginDir.getFileName().toString(); String pluginName = pluginDir.getFileName().toString();
if (pluginName.equals("admin")) { if (pluginName.equals("admin")) {
...@@ -1022,6 +1021,7 @@ public class PluginManager { ...@@ -1022,6 +1021,7 @@ public class PluginManager {
} }
if (!jarSet.contains(pluginName + ".jar")) { if (!jarSet.contains(pluginName + ".jar")) {
if (!jarSet.contains(pluginName + ".war")) { if (!jarSet.contains(pluginName + ".war")) {
Log.info( "Plugin '{}' was removed from the file system.", pluginName);
toDelete.add(pluginName); toDelete.add(pluginName);
} }
} }
...@@ -1031,12 +1031,19 @@ public class PluginManager { ...@@ -1031,12 +1031,19 @@ public class PluginManager {
} }
// Load all plugins that need to be loaded. // Load all plugins that need to be loaded.
boolean somethingChanged = false;
for (Path dirFile : dirs) { for (Path dirFile : dirs) {
// If the plugin hasn't already been started, start it. // If the plugin hasn't already been started, start it.
if (Files.exists(dirFile) && !plugins.containsKey(dirFile.getFileName().toString())) { if (Files.exists(dirFile) && !plugins.containsKey(dirFile.getFileName().toString())) {
somethingChanged = true;
loadPlugin(dirFile); loadPlugin(dirFile);
} }
} }
if ( somethingChanged ) {
Log.info( "Finished processing all plugins." );
}
// Set that at least one iteration was done. That means that "all available" plugins // Set that at least one iteration was done. That means that "all available" plugins
// have been loaded by now. // have been loaded by now.
if (!XMPPServer.getInstance().isSetupMode()) { if (!XMPPServer.getInstance().isSetupMode()) {
...@@ -1047,7 +1054,7 @@ public class PluginManager { ...@@ -1047,7 +1054,7 @@ public class PluginManager {
firePluginsMonitored(); firePluginsMonitored();
} }
catch (Throwable e) { catch (Throwable e) {
Log.error(e.getMessage(), e); Log.error("An unexpected exception occurred:", e);
} }
// Finished running task. // Finished running task.
synchronized (this) { synchronized (this) {
...@@ -1074,7 +1081,7 @@ public class PluginManager { ...@@ -1074,7 +1081,7 @@ public class PluginManager {
Files.createDirectory(dir); Files.createDirectory(dir);
// Set the date of the JAR file to the newly created folder // Set the date of the JAR file to the newly created folder
Files.setLastModifiedTime(dir, Files.getLastModifiedTime(file)); Files.setLastModifiedTime(dir, Files.getLastModifiedTime(file));
Log.debug("PluginManager: Extracting plugin: " + pluginName); Log.debug("Extracting plugin '{}'...", pluginName);
for (Enumeration e = zipFile.entries(); e.hasMoreElements();) { for (Enumeration e = zipFile.entries(); e.hasMoreElements();) {
JarEntry entry = (JarEntry)e.nextElement(); JarEntry entry = (JarEntry)e.nextElement();
Path entryFile = dir.resolve(entry.getName()); Path entryFile = dir.resolve(entry.getName());
...@@ -1089,9 +1096,10 @@ public class PluginManager { ...@@ -1089,9 +1096,10 @@ public class PluginManager {
} }
} }
} }
Log.debug("Successfully extracted plugin '{}'.", pluginName);
} }
catch (Exception e) { catch (Exception e) {
Log.error(e.getMessage(), e); Log.error("An exception occurred while trying to extract plugin '{}':", pluginName, e);
} }
} }
} }
...@@ -1111,7 +1119,7 @@ public class PluginManager { ...@@ -1111,7 +1119,7 @@ public class PluginManager {
try { try {
Files.deleteIfExists(file); Files.deleteIfExists(file);
} catch (IOException e) { } catch (IOException e) {
Log.debug("PluginManager: Plugin removal: could not delete: " + file); Log.debug("Plugin removal: could not delete: {}", file);
throw e; throw e;
} }
return FileVisitResult.CONTINUE; return FileVisitResult.CONTINUE;
...@@ -1122,7 +1130,7 @@ public class PluginManager { ...@@ -1122,7 +1130,7 @@ public class PluginManager {
try { try {
Files.deleteIfExists(dir); Files.deleteIfExists(dir);
} catch (IOException e) { } catch (IOException e) {
Log.debug("PluginManager: Plugin removal: could not delete: " + dir); Log.debug("Plugin removal: could not delete: {}", dir);
throw e; throw e;
} }
return FileVisitResult.CONTINUE; return FileVisitResult.CONTINUE;
......
...@@ -30,8 +30,6 @@ public class BookmarksPlugin implements Plugin ...@@ -30,8 +30,6 @@ public class BookmarksPlugin implements Plugin
public void initializePlugin( PluginManager manager, File pluginDirectory ) public void initializePlugin( PluginManager manager, File pluginDirectory )
{ {
System.out.println( "Starting Bookmarks Plugin" );
boolean foundIncompatiblePlugin = false; boolean foundIncompatiblePlugin = false;
try try
{ {
......
...@@ -48,8 +48,6 @@ public class ClientControlPlugin implements Plugin { ...@@ -48,8 +48,6 @@ public class ClientControlPlugin implements Plugin {
// Plugin Interface // Plugin Interface
public void initializePlugin(PluginManager manager, File pluginDirectory) { public void initializePlugin(PluginManager manager, File pluginDirectory) {
System.out.println("Starting Client Control Plugin");
// Check if we Enterprise is installed and stop loading this plugin if found // Check if we Enterprise is installed and stop loading this plugin if found
File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins"); File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins");
File[] jars = pluginDir.listFiles(new FileFilter() { File[] jars = pluginDir.listFiles(new FileFilter() {
......
...@@ -44,8 +44,6 @@ public class ClusteringPlugin implements Plugin { ...@@ -44,8 +44,6 @@ public class ClusteringPlugin implements Plugin {
private static final String COHERENCE_CACHE_CONFIG = "coherence-cache-config"; private static final String COHERENCE_CACHE_CONFIG = "coherence-cache-config";
public void initializePlugin(PluginManager manager, File pluginDirectory) { public void initializePlugin(PluginManager manager, File pluginDirectory) {
System.out.println("Starting Clustering Plugin");
// Check if we Enterprise is installed and stop loading this plugin if found // Check if we Enterprise is installed and stop loading this plugin if found
File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins"); File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins");
File[] jars = pluginDir.listFiles(new FileFilter() { File[] jars = pluginDir.listFiles(new FileFilter() {
......
...@@ -54,8 +54,6 @@ public class FastpathPlugin implements Plugin, ClusterEventListener { ...@@ -54,8 +54,6 @@ public class FastpathPlugin implements Plugin, ClusterEventListener {
private WorkgroupManager workgroupManager; private WorkgroupManager workgroupManager;
public void initializePlugin(PluginManager manager, File pluginDirectory) { public void initializePlugin(PluginManager manager, File pluginDirectory) {
System.out.println("Starting Fastpath Server");
// Check if we Enterprise is installed and stop loading this plugin if found // Check if we Enterprise is installed and stop loading this plugin if found
File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins"); File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins");
File[] jars = pluginDir.listFiles(new FileFilter() { File[] jars = pluginDir.listFiles(new FileFilter() {
......
...@@ -54,7 +54,6 @@ public class RemoteRosterPlugin implements Plugin { ...@@ -54,7 +54,6 @@ public class RemoteRosterPlugin implements Plugin {
private GojaraAdminManager gojaraAdminManager = GojaraAdminManager.getInstance(); private GojaraAdminManager gojaraAdminManager = GojaraAdminManager.getInstance();
public void initializePlugin(PluginManager manager, File pluginDirectory) { public void initializePlugin(PluginManager manager, File pluginDirectory) {
Log.info("Starting RemoteRoster Plugin");
pluginManager = manager; pluginManager = manager;
iManager.addInterceptor(mainInterceptor); iManager.addInterceptor(mainInterceptor);
manageExternalComponents(); manageExternalComponents();
...@@ -125,7 +124,6 @@ public class RemoteRosterPlugin implements Plugin { ...@@ -125,7 +124,6 @@ public class RemoteRosterPlugin implements Plugin {
} }
public void destroyPlugin() { public void destroyPlugin() {
Log.info("Destroying GoJara");
mainInterceptor.freeze(); mainInterceptor.freeze();
iManager.removeInterceptor(mainInterceptor); iManager.removeInterceptor(mainInterceptor);
PropertyEventDispatcher.removeListener(_settingsObserver); PropertyEventDispatcher.removeListener(_settingsObserver);
......
...@@ -56,8 +56,6 @@ public class HazelcastPlugin extends TimerTask implements Plugin { ...@@ -56,8 +56,6 @@ public class HazelcastPlugin extends TimerTask implements Plugin {
@Override @Override
public void run() { public void run() {
System.out.println("Starting Hazelcast Clustering Plugin");
// Check if another cluster is installed and stop loading this plugin if found // Check if another cluster is installed and stop loading this plugin if found
File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins"); File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins");
File[] jars = pluginDir.listFiles(new FileFilter() { File[] jars = pluginDir.listFiles(new FileFilter() {
......
...@@ -162,8 +162,6 @@ public class MonitoringPlugin implements Plugin { ...@@ -162,8 +162,6 @@ public class MonitoringPlugin implements Plugin {
xep0313Support = new Xep0313Support(XMPPServer.getInstance()); xep0313Support = new Xep0313Support(XMPPServer.getInstance());
xep0313Support.start(); xep0313Support.start();
System.out.println("Starting Monitoring Plugin");
// Check if we Enterprise is installed and stop loading this plugin if // Check if we Enterprise is installed and stop loading this plugin if
// found // found
File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins"); File pluginDir = new File(JiveGlobals.getHomeDirectory(), "plugins");
......
...@@ -40,7 +40,6 @@ public class PacketFilterPlugin implements Plugin, PacketInterceptor, PropertyEv ...@@ -40,7 +40,6 @@ public class PacketFilterPlugin implements Plugin, PacketInterceptor, PropertyEv
public void initializePlugin(PluginManager manager, File pluginDirectory) { public void initializePlugin(PluginManager manager, File pluginDirectory) {
// register with interceptor manager // register with interceptor manager
Log.info("Packet Filter loaded...");
interceptorManager.addInterceptor(this); interceptorManager.addInterceptor(this);
pluginManager = manager; pluginManager = manager;
pf = PacketFilter.getInstance(); pf = PacketFilter.getInstance();
......
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