Skip to content

Commit

Permalink
add thread name to logs in prod env
Browse files Browse the repository at this point in the history
reason: uniformity since other envs have it. for whatever reason, prod was different.
  • Loading branch information
goekay committed Jun 3, 2023
1 parent 0b6d2d9 commit e2c4c14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/config/prod/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Configuration status="WARN">

<Properties>
<Property name="logPattern">[%-5p] %d %c - %m%n</Property>
<Property name="logPattern">[%-5p] %d %c (%t) - %m%n</Property>
</Properties>

<Appenders>
Expand Down Expand Up @@ -33,4 +33,4 @@
<AppenderRef ref="FILE"/>
</AsyncRoot>
</Loggers>
</Configuration>
</Configuration>

0 comments on commit e2c4c14

Please sign in to comment.