Skip to content

Commit

Permalink
debug only
Browse files Browse the repository at this point in the history
  • Loading branch information
YannLocatelli committed May 7, 2024
1 parent 353ab7f commit 86b18ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/RobotKit/Sources/Robot+Information.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extension Robot {
onNotification: { data in
if let value = data?.first {
self.battery.send(Int(value))
log.trace("🤖 battery: \(self.battery.value)%")
// log.trace("🤖 battery: \(self.battery.value)%")
}
}
)
Expand All @@ -29,7 +29,7 @@ extension Robot {
onNotification: { data in
if let value = data?.first {
self.isCharging.send(value == 1)
log.trace("🤖 isCharging: \(self.isCharging.value)")
// log.trace("🤖 isCharging: \(self.isCharging.value)")
}
}
)
Expand Down

0 comments on commit 86b18ef

Please sign in to comment.