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
41fa6c25
Commit
41fa6c25
authored
Jul 23, 2013
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some debug logging to samples
parent
efe3bc1e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
43 additions
and
12 deletions
+43
-12
ui.groovy
spring-cli/samples/ui.groovy
+2
-0
log4j.properties
spring-cli/src/test/resources/log4j.properties
+0
-10
logback.xml
spring-cli/src/test/resources/logback.xml
+19
-0
logback.xml
...pring-zero-sample-actuator/src/main/resources/logback.xml
+1
-2
application.properties
...o-sample-web-ui/src/main/resources/application.properties
+2
-0
logback.xml
.../spring-zero-sample-web-ui/src/main/resources/logback.xml
+19
-0
No files found.
spring-cli/samples/ui.groovy
View file @
41fa6c25
package
app
@Grab
(
"org.thymeleaf:thymeleaf-spring3:2.0.16"
)
@Controller
class
Example
{
...
...
spring-cli/src/test/resources/log4j.properties
deleted
100644 → 0
View file @
efe3bc1e
log4j.rootCategory
=
INFO, stdout
log4j.appender.stdout
=
org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout
=
org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern
=
%d %p [%c] - <%m>%n
log4j.category.org.springframework.autoconfigure
=
DEBUG
log4j.category.org.springframework.bootstrap
=
DEBUG
#log4j.category.org.springframework.integration.dsl=DEBUG
#log4j.category.org.springframework.amqp=DEBUG
spring-cli/src/test/resources/logback.xml
0 → 100644
View file @
41fa6c25
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<property
name=
"CONSOLE_LOG_PATTERN"
value=
"%d{yyyy-MM-dd HH:mm:ss.SSS} %5p ${PID:- } [%t] --- %-40.40logger{39} : %m%n%wex"
/>
<conversionRule
conversionWord=
"wex"
converterClass=
"org.springframework.bootstrap.logging.logback.WhitespaceThrowableProxyConverter"
/>
<appender
name=
"CONSOLE"
class=
"ch.qos.logback.core.ConsoleAppender"
>
<encoder>
<pattern>
${CONSOLE_LOG_PATTERN}
</pattern>
</encoder>
</appender>
<root
level=
"INFO"
>
<appender-ref
ref=
"CONSOLE"
/>
</root>
<!-- logger name="org.springframework" level="DEBUG"/ -->
</configuration>
spring-zero-samples/spring-zero-sample-actuator/src/main/resources/logback.xml
View file @
41fa6c25
...
...
@@ -14,7 +14,6 @@
<appender-ref
ref=
"CONSOLE"
/>
</root>
<!--logger name="org.springframework.zero" level="DEBUG"/>
<logger name="org.springframework.security" level="DEBUG"/-->
<!-- logger name="org.springframework" level="DEBUG"/ -->
</configuration>
spring-zero-samples/spring-zero-sample-web-ui/src/main/resources/application.properties
0 → 100644
View file @
41fa6c25
# Allow Thymeleaf templates to be reloaded at dev time
spring.template.cache
:
false
\ No newline at end of file
spring-zero-samples/spring-zero-sample-web-ui/src/main/resources/logback.xml
0 → 100644
View file @
41fa6c25
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<property
name=
"CONSOLE_LOG_PATTERN"
value=
"%d{yyyy-MM-dd HH:mm:ss.SSS} %5p ${PID:- } [%t] --- %-40.40logger{39} : %m%n%wex"
/>
<conversionRule
conversionWord=
"wex"
converterClass=
"org.springframework.bootstrap.logging.logback.WhitespaceThrowableProxyConverter"
/>
<appender
name=
"CONSOLE"
class=
"ch.qos.logback.core.ConsoleAppender"
>
<encoder>
<pattern>
${CONSOLE_LOG_PATTERN}
</pattern>
</encoder>
</appender>
<root
level=
"INFO"
>
<appender-ref
ref=
"CONSOLE"
/>
</root>
<!-- logger name="org.springframework" level="DEBUG"/ -->
</configuration>
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