Skip to content

Commit 1b9af22

Browse files
authored
Merge pull request qibaoguang#7 from cnfn/master
fix some syntax/format error
2 parents fc385f3 + 6e5f6a8 commit 1b9af22

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

IV. Spring Boot features/26.2. Console output.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
```shell
55
$ java -jar myapp.jar --debug
66
```
7-
当debug模式启用时,一系列核心loggers(内嵌容器,Hibernate,Spring Boot等)记录的日志会变多,但不会输出所有的信息。相应地,你可以在启动应用时,通过`--trace`(或在`application.properties`设置`trace=true`)启用"trace"模式,该模式能够追踪核心loggers(内嵌容器,Hibernate生成的schema,Spring全部的portfolio)的所有日志信息。
7+
当debug模式启用时,一系列核心loggers(内嵌容器,Hibernate,Spring Boot等)记录的日志会变多,但不会输出所有的信息。
8+
9+
相应地,你可以在启动应用时,通过`--trace`(或在`application.properties`设置`trace=true`)启用"trace"模式,该模式能够追踪核心loggers(内嵌容器,Hibernate生成的schema,Spring全部的portfolio)的所有日志信息。

IV. Spring Boot features/26.6.1 Profile-specific configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
###26.6.1 Profile-specific配置
1+
### 26.6.1 Profile-specific配置
22
`<springProfile>`标签可用于根据激活的Spring profiles,选择性的包含或排除配置片段。Profile片段可以放在`<configuration>`元素内的任何地方,使用`name`属性定义哪些profile接受该配置,多个profiles以逗号分隔。
33
```xml
44
<springProfile name="staging">

0 commit comments

Comments
 (0)