Skip to content

Commit

Permalink
Apply minor logging improvement.
Browse files Browse the repository at this point in the history
  • Loading branch information
calohmn committed Nov 27, 2024
1 parent 7df9a3a commit 0d5e352
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -529,9 +529,9 @@ private Future<Void> sendTtdEvent(
context)
.onSuccess(s -> LOG.debug(
"successfully sent TTD notification [tenant: {}, device-id: {}, TTD: {}]",
tenant, deviceId, ttd))
tenant.getTenantId(), deviceId, ttd))
.onFailure(t -> LOG.debug(
"failed to send TTD notification [tenant: {}, device-id: {}, TTD: {}]",
tenant, deviceId, ttd));
tenant.getTenantId(), deviceId, ttd));
}
}

0 comments on commit 0d5e352

Please sign in to comment.