LDAP-273: Converted to slf4j
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2005-2010 the original author or authors.
|
||||
* Copyright 2005-2013 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -15,17 +15,16 @@
|
||||
*/
|
||||
package org.springframework.ldap.test;
|
||||
|
||||
import java.util.Collections;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.springframework.beans.factory.config.AbstractFactoryBean;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
import com.xerox.amazonws.ec2.Jec2;
|
||||
import com.xerox.amazonws.ec2.LaunchConfiguration;
|
||||
import com.xerox.amazonws.ec2.ReservationDescription;
|
||||
import com.xerox.amazonws.ec2.ReservationDescription.Instance;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.config.AbstractFactoryBean;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
import java.util.Collections;
|
||||
|
||||
/**
|
||||
* Abstract FactoryBean superclass to use for automatically launching an EC2 instance before creating the actual target object.
|
||||
@@ -46,7 +45,7 @@ public abstract class AbstractEc2InstanceLaunchingFactoryBean extends AbstractFa
|
||||
|
||||
private static final long DEFAULT_PREPARATION_SLEEP_TIME = 30000;
|
||||
|
||||
private static final Log log = LogFactory.getLog(AbstractEc2InstanceLaunchingFactoryBean.class);
|
||||
private static final Logger log = LoggerFactory.getLogger(AbstractEc2InstanceLaunchingFactoryBean.class);
|
||||
|
||||
private String imageName;
|
||||
|
||||
@@ -163,4 +162,4 @@ public abstract class AbstractEc2InstanceLaunchingFactoryBean extends AbstractFa
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,8 +16,6 @@
|
||||
|
||||
package org.springframework.ldap.test;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.directory.server.core.DefaultDirectoryService;
|
||||
import org.apache.directory.server.core.DirectoryService;
|
||||
import org.apache.directory.server.core.entry.ServerEntry;
|
||||
@@ -35,8 +33,6 @@ import java.io.File;
|
||||
* @since 1.3.2
|
||||
*/
|
||||
public class EmbeddedLdapServer {
|
||||
private static final Log log = LogFactory.getLog(EmbeddedLdapServer.class);
|
||||
|
||||
private final DirectoryService directoryService;
|
||||
private final LdapServer ldapServer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user