Commit 8c61ad39 authored by Günther Niess's avatar Günther Niess Committed by niess

OF-53: Revert replace custom logging implementation for startup library

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11507 b35dd754-fafc-0310-a699-88a17e54d16e
parent 809a6ce1
......@@ -20,13 +20,12 @@
package org.jivesoftware.openfire.starter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.*;
import java.util.jar.Pack200;
import java.util.jar.JarOutputStream;
import org.jivesoftware.util.Log;
/**
* Starts the core XMPP server. A bootstrap class that configures classloaders
* to ensure easy, dynamic server startup.
......@@ -50,8 +49,6 @@ import java.util.jar.JarOutputStream;
*/
public class ServerStarter {
private static final Logger Log = LoggerFactory.getLogger(ServerStarter.class);
/**
* Default to this location if one has not been specified
*/
......@@ -117,7 +114,7 @@ public class ServerStarter {
containerClass.newInstance();
}
catch (Exception e) {
Log.error(e.getMessage(), e);
e.printStackTrace();
}
}
......
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