Skip to content

Commit

Permalink
chore: log at debug level
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Voiturier <benjamin.voiturier@iohk.io>
  • Loading branch information
bvoiturier committed Oct 7, 2024
1 parent d6a89fb commit 93e0dab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object ConnectBackgroundJobs extends BackgroundJobsHelper {
Unit
] =
(for {
_ <- ZIO.logInfo(s"!!! Handling recordId: ${message.value} via Kafka queue")
_ <- ZIO.logDebug(s"!!! Handling recordId: ${message.value} via Kafka queue")
connectionService <- ZIO.service[ConnectionService]
walletAccessContext = WalletAccessContext(WalletId.fromUUID(message.value.walletId))
record <- connectionService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object IssueBackgroundJobs extends BackgroundJobsHelper {
Unit
] = {
(for {
_ <- ZIO.logInfo(s"!!! Handling recordId: ${message.value} via Kafka queue")
_ <- ZIO.logDebug(s"!!! Handling recordId: ${message.value} via Kafka queue")
credentialService <- ZIO.service[CredentialService]
walletAccessContext = WalletAccessContext(WalletId.fromUUID(message.value.walletId))
record <- credentialService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ object PresentBackgroundJobs extends BackgroundJobsHelper {
Unit
] = {
(for {
_ <- ZIO.logInfo(s"!!! Present Proof Handling recordId: ${message.value} via Kafka queue")
_ <- ZIO.logDebug(s"!!! Present Proof Handling recordId: ${message.value} via Kafka queue")
presentationService <- ZIO.service[PresentationService]
walletAccessContext = WalletAccessContext(WalletId.fromUUID(message.value.walletId))
record <- presentationService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ object StatusListJobs extends BackgroundJobsHelper {
Unit
] = {
(for {
_ <- ZIO.logInfo(s"!!! Handling recordId: ${message.value} via Kafka queue")
_ <- ZIO.logDebug(s"!!! Handling recordId: ${message.value} via Kafka queue")
credentialStatusListService <- ZIO.service[CredentialStatusListService]
walletAccessContext = WalletAccessContext(WalletId.fromUUID(message.value.walletId))
statusListWithCreds <- credentialStatusListService
Expand Down

0 comments on commit 93e0dab

Please sign in to comment.