Commit d160a052 authored by God Ly's avatar God Ly Committed by it2000

OF-53 replaced custom logging implementation with slf4j

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11684 b35dd754-fafc-0310-a699-88a17e54d16e
parent e47bef98
...@@ -32,7 +32,8 @@ import javax.net.ssl.X509TrustManager; ...@@ -32,7 +32,8 @@ import javax.net.ssl.X509TrustManager;
import org.jivesoftware.util.JiveGlobals; import org.jivesoftware.util.JiveGlobals;
import org.jivesoftware.util.CertificateManager; import org.jivesoftware.util.CertificateManager;
import org.jivesoftware.util.Log; import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** /**
* Trust manager that validates Clearspace certificates. Using system properties * Trust manager that validates Clearspace certificates. Using system properties
...@@ -43,6 +44,7 @@ import org.jivesoftware.util.Log; ...@@ -43,6 +44,7 @@ import org.jivesoftware.util.Log;
*/ */
public class ClearspaceX509TrustManager implements X509TrustManager { public class ClearspaceX509TrustManager implements X509TrustManager {
private static final Logger Log = LoggerFactory.getLogger(ClearspaceX509TrustManager.class);
/** /**
* KeyStore that holds the trusted CA * KeyStore that holds the trusted CA
*/ */
......
...@@ -24,7 +24,8 @@ import java.io.*; ...@@ -24,7 +24,8 @@ import java.io.*;
import java.util.jar.Pack200; import java.util.jar.Pack200;
import java.util.jar.JarOutputStream; import java.util.jar.JarOutputStream;
import org.jivesoftware.util.Log; import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** /**
* Starts the core XMPP server. A bootstrap class that configures classloaders * Starts the core XMPP server. A bootstrap class that configures classloaders
...@@ -49,6 +50,7 @@ import org.jivesoftware.util.Log; ...@@ -49,6 +50,7 @@ import org.jivesoftware.util.Log;
*/ */
public class ServerStarter { public class ServerStarter {
private static final Logger Log = LoggerFactory.getLogger(ServerStarter.class);
/** /**
* Default to this location if one has not been specified * Default to this location if one has not been specified
*/ */
......
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