We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02fd834 commit 1a0bfbbCopy full SHA for 1a0bfbb
1 file changed
app/src/main/java/eu/darken/capod/pods/core/apple/aap/AapConnection.kt
@@ -276,7 +276,8 @@ internal class AapConnection(
276
sock.outputStream.write(bytes)
277
sock.outputStream.flush()
278
if (command is AapCommand.SetAncMode) lastAncCommandSentAt = timeSource.currentTimeMillis()
279
- log(TAG) { "Sent command: $command (${bytes.size} bytes)" }
+ val hex = bytes.joinToString(" ") { "%02X".format(it) }
280
+ log(TAG, VERBOSE) { "SEND cmd=$command len=${bytes.size} raw=$hex" }
281
}
282
283
0 commit comments