Skip to content

Commit

Permalink
Merge pull request #253 from vivid-money/missing-tag
Browse files Browse the repository at this point in the history
fix missing log tag
  • Loading branch information
dsvag authored Jan 24, 2024
2 parents f480e45 + 95430b5 commit 8d2983c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ class ElmStore<Event : Any, State : Any, Effect : Any, Command : Any>(
actor
.execute(command)
.onEach {
logger.debug("Command $command produces event $it")
logger.debug(
message = "Command $command produces event $it",
tag = key,
)
}
.cancellable()
.catch { throwable ->
Expand Down

0 comments on commit 8d2983c

Please sign in to comment.