Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
dad4e84d
Commit
dad4e84d
authored
Apr 01, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5410 from Kazuki Shimizu
* version-upgrades: Upgrade to Logback 1.1.6
parents
e7bb67fa
b4b7e7ea
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
pom.xml
spring-boot-dependencies/pom.xml
+1
-1
ConfigFileApplicationListenerTests.java
...ot/context/config/ConfigFileApplicationListenerTests.java
+2
-2
SpringBootJoranConfiguratorTests.java
...oot/logging/logback/SpringBootJoranConfiguratorTests.java
+3
-2
No files found.
spring-boot-dependencies/pom.xml
View file @
dad4e84d
...
...
@@ -112,7 +112,7 @@
<liquibase.version>
3.4.2
</liquibase.version>
<log4j.version>
1.2.17
</log4j.version>
<log4j2.version>
2.4.1
</log4j2.version>
<logback.version>
1.1.
5
</logback.version>
<logback.version>
1.1.
6
</logback.version>
<mariadb.version>
1.2.3
</mariadb.version>
<mockito.version>
1.10.19
</mockito.version>
<mongodb.version>
2.13.3
</mongodb.version>
...
...
spring-boot/src/test/java/org/springframework/boot/context/config/ConfigFileApplicationListenerTests.java
View file @
dad4e84d
/*
* Copyright 2012-201
5
the original author or authors.
* Copyright 2012-201
6
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.
...
...
@@ -106,7 +106,7 @@ public class ConfigFileApplicationListenerTests {
LoggerContext
loggerContext
=
((
Logger
)
LoggerFactory
.
getLogger
(
getClass
()))
.
getLoggerContext
();
loggerContext
.
reset
();
BasicConfigurator
.
configure
(
loggerContext
);
new
BasicConfigurator
()
.
configure
(
loggerContext
);
}
@After
...
...
spring-boot/src/test/java/org/springframework/boot/logging/logback/SpringBootJoranConfiguratorTests.java
View file @
dad4e84d
/*
* Copyright 2012-201
5
the original author or authors.
* Copyright 2012-201
6
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.
...
...
@@ -25,6 +25,7 @@ import org.junit.Before;
import
org.junit.Rule
;
import
org.junit.Test
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.slf4j.impl.StaticLoggerBinder
;
import
org.springframework.boot.logging.LoggingInitializationContext
;
...
...
@@ -71,7 +72,7 @@ public class SpringBootJoranConfiguratorTests {
@After
public
void
reset
()
{
this
.
context
.
stop
();
BasicConfigurator
.
configureDefaultContext
(
);
new
BasicConfigurator
().
configure
((
LoggerContext
)
LoggerFactory
.
getILoggerFactory
()
);
}
@Test
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment