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
eefdbb73
Commit
eefdbb73
authored
Sep 28, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge Actuator's loggers package into its logging package
Closes gh-10430
parent
94fefbf8
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
9 additions
and
31 deletions
+9
-31
LogFileWebEndpointManagementContextConfiguration.java
...ing/LogFileWebEndpointManagementContextConfiguration.java
+1
-1
LogFileWebEndpointProperties.java
...e/autoconfigure/logging/LogFileWebEndpointProperties.java
+1
-1
LogFileWebEndpointManagementContextConfigurationTests.java
...ogFileWebEndpointManagementContextConfigurationTests.java
+1
-1
package-info.java
...org/springframework/boot/actuate/logger/package-info.java
+0
-20
LogFileWebEndpoint.java
...ingframework/boot/actuate/logging/LogFileWebEndpoint.java
+1
-1
package-info.java
...rg/springframework/boot/actuate/logging/package-info.java
+1
-1
LogFileWebEndpointTests.java
...amework/boot/actuate/logging/LogFileWebEndpointTests.java
+1
-1
LogFileWebEndpointWebIntegrationTests.java
...ctuate/logging/LogFileWebEndpointWebIntegrationTests.java
+1
-1
LoggersEndpointTests.java
...gframework/boot/actuate/logging/LoggersEndpointTests.java
+1
-2
LoggersEndpointWebIntegrationTests.java
...t/actuate/logging/LoggersEndpointWebIntegrationTests.java
+1
-2
No files found.
spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/logging/LogFileWebEndpointManagementContextConfiguration.java
View file @
eefdbb73
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
package
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
logging
;
package
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
logging
;
import
org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration
;
import
org.springframework.boot.actuate.logg
er
.LogFileWebEndpoint
;
import
org.springframework.boot.actuate.logg
ing
.LogFileWebEndpoint
;
import
org.springframework.boot.autoconfigure.condition.ConditionMessage
;
import
org.springframework.boot.autoconfigure.condition.ConditionMessage
;
import
org.springframework.boot.autoconfigure.condition.ConditionOutcome
;
import
org.springframework.boot.autoconfigure.condition.ConditionOutcome
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
;
...
...
spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/logging/LogFileWebEndpointProperties.java
View file @
eefdbb73
...
@@ -18,7 +18,7 @@ package org.springframework.boot.actuate.autoconfigure.logging;
...
@@ -18,7 +18,7 @@ package org.springframework.boot.actuate.autoconfigure.logging;
import
java.io.File
;
import
java.io.File
;
import
org.springframework.boot.actuate.logg
er
.LogFileWebEndpoint
;
import
org.springframework.boot.actuate.logg
ing
.LogFileWebEndpoint
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
/**
/**
...
...
spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/logging/LogFileWebEndpointManagementContextConfigurationTests.java
View file @
eefdbb73
...
@@ -24,7 +24,7 @@ import org.junit.Rule;
...
@@ -24,7 +24,7 @@ import org.junit.Rule;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.junit.rules.TemporaryFolder
;
import
org.junit.rules.TemporaryFolder
;
import
org.springframework.boot.actuate.logg
er
.LogFileWebEndpoint
;
import
org.springframework.boot.actuate.logg
ing
.LogFileWebEndpoint
;
import
org.springframework.boot.test.context.runner.WebApplicationContextRunner
;
import
org.springframework.boot.test.context.runner.WebApplicationContextRunner
;
import
org.springframework.core.io.Resource
;
import
org.springframework.core.io.Resource
;
import
org.springframework.util.FileCopyUtils
;
import
org.springframework.util.FileCopyUtils
;
...
...
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logger/package-info.java
deleted
100644 → 0
View file @
94fefbf8
/*
* Copyright 2012-2017 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Actuator support for logging.
*/
package
org
.
springframework
.
boot
.
actuate
.
logger
;
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logg
er
/LogFileWebEndpoint.java
→
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logg
ing
/LogFileWebEndpoint.java
View file @
eefdbb73
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
actuate
.
logg
er
;
package
org
.
springframework
.
boot
.
actuate
.
logg
ing
;
import
java.io.File
;
import
java.io.File
;
...
...
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging/package-info.java
View file @
eefdbb73
...
@@ -15,6 +15,6 @@
...
@@ -15,6 +15,6 @@
*/
*/
/**
/**
* Actuator support for
AMQP and RabbitMQ
.
* Actuator support for
logging
.
*/
*/
package
org
.
springframework
.
boot
.
actuate
.
logging
;
package
org
.
springframework
.
boot
.
actuate
.
logging
;
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
er
/LogFileWebEndpointTests.java
→
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
ing
/LogFileWebEndpointTests.java
View file @
eefdbb73
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
actuate
.
logg
er
;
package
org
.
springframework
.
boot
.
actuate
.
logg
ing
;
import
java.io.File
;
import
java.io.File
;
import
java.io.IOException
;
import
java.io.IOException
;
...
...
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
er
/LogFileWebEndpointWebIntegrationTests.java
→
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
ing
/LogFileWebEndpointWebIntegrationTests.java
View file @
eefdbb73
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
actuate
.
logg
er
;
package
org
.
springframework
.
boot
.
actuate
.
logg
ing
;
import
java.io.File
;
import
java.io.File
;
import
java.io.IOException
;
import
java.io.IOException
;
...
...
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
er
/LoggersEndpointTests.java
→
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
ing
/LoggersEndpointTests.java
View file @
eefdbb73
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
actuate
.
logg
er
;
package
org
.
springframework
.
boot
.
actuate
.
logg
ing
;
import
java.util.Collections
;
import
java.util.Collections
;
import
java.util.EnumSet
;
import
java.util.EnumSet
;
...
@@ -23,7 +23,6 @@ import java.util.Set;
...
@@ -23,7 +23,6 @@ import java.util.Set;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.actuate.logging.LoggersEndpoint
;
import
org.springframework.boot.actuate.logging.LoggersEndpoint.LoggerLevels
;
import
org.springframework.boot.actuate.logging.LoggersEndpoint.LoggerLevels
;
import
org.springframework.boot.logging.LogLevel
;
import
org.springframework.boot.logging.LogLevel
;
import
org.springframework.boot.logging.LoggerConfiguration
;
import
org.springframework.boot.logging.LoggerConfiguration
;
...
...
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
er
/LoggersEndpointWebIntegrationTests.java
→
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/logg
ing
/LoggersEndpointWebIntegrationTests.java
View file @
eefdbb73
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
actuate
.
logg
er
;
package
org
.
springframework
.
boot
.
actuate
.
logg
ing
;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.Collections
;
import
java.util.Collections
;
...
@@ -30,7 +30,6 @@ import org.mockito.Mockito;
...
@@ -30,7 +30,6 @@ import org.mockito.Mockito;
import
org.springframework.boot.actuate.endpoint.http.ActuatorMediaType
;
import
org.springframework.boot.actuate.endpoint.http.ActuatorMediaType
;
import
org.springframework.boot.actuate.endpoint.web.test.WebEndpointRunners
;
import
org.springframework.boot.actuate.endpoint.web.test.WebEndpointRunners
;
import
org.springframework.boot.actuate.logging.LoggersEndpoint
;
import
org.springframework.boot.logging.LogLevel
;
import
org.springframework.boot.logging.LogLevel
;
import
org.springframework.boot.logging.LoggerConfiguration
;
import
org.springframework.boot.logging.LoggerConfiguration
;
import
org.springframework.boot.logging.LoggingSystem
;
import
org.springframework.boot.logging.LoggingSystem
;
...
...
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