Skip to content

Commit

Permalink
Fix log entries duplication (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilosus committed Jul 29, 2023
1 parent 48bbcd7 commit 6ecb7ab
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ SLACK__TOKEN=token
SLACK__SIGN=signing key
ALERTS__SENTRY_DSN="https://public:private@localhost/1"
SERVER__PORT=8080
SERVER__LOGLEVEL=INFO
SERVER__LOGLEVEL=DEBUG
SERVER__ROOTLEVEL=INFO
SERVER__ACCESS_LOG=true
SERVER__BLOCK_THREAD=false
DB__SERVER_NAME=postgres
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ file. This change log follows the conventions of

## [Unreleased]

## [1.0.83] - 2023-07-29

### Fixed

- Log entries duplicating removed

## [1.0.82] - 2023-07-23

### Changed
Expand Down Expand Up @@ -224,7 +230,8 @@ documentation website added. Project has made it to the version 1.0.0!
### Added
- Bot app MVP

[Unreleased]: https://github.com/pilosus/dienstplan/compare/1.0.82...HEAD
[Unreleased]: https://github.com/pilosus/dienstplan/compare/1.0.83...HEAD
[1.0.83]: https://github.com/pilosus/dienstplan/compare/1.0.82...1.0.83
[1.0.82]: https://github.com/pilosus/dienstplan/compare/1.0.81...1.0.82
[1.0.81]: https://github.com/pilosus/dienstplan/compare/1.0.0...1.0.81
[1.0.0]: https://github.com/pilosus/dienstplan/compare/0.5.0...1.0.0
Expand Down
4 changes: 1 addition & 3 deletions resources/logback.json.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
</encoder>
</appender>

<logger name="dienstplan" level="${SERVER__LOGLEVEL:-INFO}">
<appender-ref ref="STDOUT" />
</logger>
<logger name="dienstplan" level="${SERVER__LOGLEVEL:-INFO}" />

<root level="${SERVER__ROOTLEVEL:-INFO}">
<appender-ref ref="STDOUT" />
Expand Down
4 changes: 1 addition & 3 deletions resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
</encoder>
</appender>

<logger name="dienstplan" level="${SERVER__LOGLEVEL:-INFO}">
<appender-ref ref="STDOUT" />
</logger>
<logger name="dienstplan" level="${SERVER__LOGLEVEL:-INFO}" />

<root level="${SERVER__ROOTLEVEL:-INFO}">
<appender-ref ref="STDOUT" />
Expand Down

0 comments on commit 6ecb7ab

Please sign in to comment.