-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup dependencies and explicitly use akka slf4j
We we previously relying on akka typed to be on the classpath so that akka automatically logged into slf4j implementation: - https://doc.akka.io/docs/akka/current/logging.html However, that dependency was not being used for anything else. I think it is more correct to be explicit on our logging purposes and explicitly use akka-slf4j dependency and configure the application accordingly
- Loading branch information
1 parent
6005faa
commit 48f0f4b
Showing
3 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
akka { | ||
loggers = ["akka.event.slf4j.Slf4jLogger"] | ||
logging-filter = "akka.event.slf4j.Slf4jLoggingFilter" | ||
log-dead-letters = 0 | ||
log-dead-letters-during-shutdown = off | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters