Skip to content

Commit 3c2cff3

Browse files
committed
Fixed indentation issues
1 parent e2f8a68 commit 3c2cff3

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

resources/log4j2.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,32 @@
22

33
<!--
44
################################################################################################################
5-
For information on how to change this configuration file,
6-
refer to https://logging.apache.org/log4j/2.x/manual/configuration.html
7-
8-
To enable masking of sensitive data, replace `%m` with `%logMessage%` in the patterns below
5+
For information on how to change this configuration file,
6+
refer to https://logging.apache.org/log4j/2.x/manual/configuration.html
7+
8+
To enable masking of sensitive data, replace `%m` with `%logMessage%` in the patterns below
99
################################################################################################################
1010
-->
1111

1212
<Configuration status="FATAL">
13-
<Properties>
13+
<Properties>
1414
<Property name="log-path">./logs</Property>
1515
<Property name="logFileName">net.authorize.java</Property>
1616
</Properties>
1717
<Appenders>
1818
<Console name="LogToConsole" target="SYSTEM_OUT">
19-
<PatternLayout pattern="%d{MM/dd/yy HH:mm:ss,SS:} [%t] %5p (%C:%-1L) - %m%n"/>
20-
</Console>
19+
<PatternLayout pattern="%d{MM/dd/yy HH:mm:ss,SS:} [%t] %5p (%C:%-1L) - %m%n"/>
20+
</Console>
2121
<RollingFile name="RollingFile"
2222
fileName="${log-path}/${logFileName}.log"
2323
filePattern="${log-path}/${logFileName}-%d{yyyy-MM-dd}-%i.log">
2424
<PatternLayout>
2525
<pattern>%d{MM/dd/yy HH:mm:ss,SS:} [%t] %5p (%C:%-1L) - %m%n</pattern>
2626
</PatternLayout>
27-
<Policies>
28-
<TimeBasedTriggeringPolicy interval="1" modulate="true"/>
29-
</Policies>
30-
<DefaultRolloverStrategy max="4" />
27+
<Policies>
28+
<TimeBasedTriggeringPolicy interval="1" modulate="true"/>
29+
</Policies>
30+
<DefaultRolloverStrategy max="4"/>
3131
</RollingFile>
3232
</Appenders>
3333
<Loggers>

0 commit comments

Comments
 (0)