Deprecate Log4JLoggingSystem

Fixes gh-3893
This commit is contained in:
Phillip Webb
2015-09-03 11:43:52 -07:00
parent f4dcef281c
commit da0d85c30e
2 changed files with 4 additions and 0 deletions

View File

@@ -38,7 +38,10 @@ import org.springframework.util.StringUtils;
* @author Phillip Webb
* @author Dave Syer
* @author Andy Wilkinson
* @deprecated in Spring Boot 1.3 in favor of Apache Log4j 2 (following Apache's EOL
* declaration for log4j 1.x)
*/
@Deprecated
public class Log4JLoggingSystem extends Slf4JLoggingSystem {
private static final Map<LogLevel, Level> LEVELS;

View File

@@ -43,6 +43,7 @@ import static org.junit.Assert.assertTrue;
* @author Phillip Webb
* @author Andy Wilkinson
*/
@SuppressWarnings("deprecation")
public class Log4JLoggingSystemTests extends AbstractLoggingSystemTests {
@Rule