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
cf860031
Commit
cf860031
authored
Jul 16, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3512 from izeye/polish-20150716
* pr/3512: Polish LoggingSystem
parents
6ace7e53
8d3803b8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
AbstractLoggingSystem.java
...g/springframework/boot/logging/AbstractLoggingSystem.java
+2
-2
LoggingSystem.java
.../java/org/springframework/boot/logging/LoggingSystem.java
+1
-1
SpringProfileAction.java
...ngframework/boot/logging/logback/SpringProfileAction.java
+1
-1
JavaLoggingSystemTests.java
...ngframework/boot/logging/java/JavaLoggingSystemTests.java
+1
-1
No files found.
spring-boot/src/main/java/org/springframework/boot/logging/AbstractLoggingSystem.java
View file @
cf860031
...
...
@@ -78,7 +78,7 @@ public abstract class AbstractLoggingSystem extends LoggingSystem {
* Return any self initialization config that has been applied. By default this method
* checks {@link #getStandardConfigLocations()} and assumes that any file that exists
* will have been applied.
* @return the self initialization configor {@code null}
* @return the self initialization config
or {@code null}
*/
protected
String
getSelfInitializationConfig
()
{
return
findConfig
(
getStandardConfigLocations
());
...
...
@@ -113,7 +113,7 @@ public abstract class AbstractLoggingSystem extends LoggingSystem {
/**
* Return the spring config locations for this system. By default this method returns
* a set of locations based on {@link #getStandardConfigLocations()}.
* @return the s
tandard
config locations
* @return the s
pring
config locations
* @see #getSpringInitializationConfig()
*/
protected
String
[]
getSpringConfigLocations
()
{
...
...
spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystem.java
View file @
cf860031
...
...
@@ -54,7 +54,7 @@ public abstract class LoggingSystem {
/**
* Reset the logging system to be limit output. This method may be called before
* {@link #initialize(LoggingInitializationContext, String, LogFile)} to reduce
* logging noise until the system has been fully
I
nitialized.
* logging noise until the system has been fully
i
nitialized.
*/
public
abstract
void
beforeInitialize
();
...
...
spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringProfileAction.java
View file @
cf860031
...
...
@@ -32,7 +32,7 @@ import ch.qos.logback.core.joran.spi.Interpreter;
import
ch.qos.logback.core.util.OptionHelper
;
/**
* Lo
ck
back {@link Action} to support {@code <springProfile>} tags. Allows section of a
* Lo
g
back {@link Action} to support {@code <springProfile>} tags. Allows section of a
* logback configuration to only be enabled when a specific profile is active.
*
* @author Phillip Webb
...
...
spring-boot/src/test/java/org/springframework/boot/logging/java/JavaLogg
er
SystemTests.java
→
spring-boot/src/test/java/org/springframework/boot/logging/java/JavaLogg
ing
SystemTests.java
View file @
cf860031
...
...
@@ -44,7 +44,7 @@ import static org.junit.Assert.assertTrue;
* @author Dave Syer
* @author Phillip Webb
*/
public
class
JavaLogg
er
SystemTests
extends
AbstractLoggingSystemTests
{
public
class
JavaLogg
ing
SystemTests
extends
AbstractLoggingSystemTests
{
private
static
final
FileFilter
SPRING_LOG_FILTER
=
new
FileFilter
()
{
...
...
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