summaryrefslogtreecommitdiffstats
path: root/src/asr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/asr.c')
-rw-r--r--src/asr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asr.c b/src/asr.c
index db11d08..401bc51 100644
--- a/src/asr.c
+++ b/src/asr.c
@@ -159,7 +159,7 @@ int asr_send_buffer(asr_client_t asr, const char* data, uint32_t size) {
device_error = idevice_connection_send(asr->connection, data, size, &bytes);
if (device_error != IDEVICE_E_SUCCESS || bytes != size) {
- error("ERROR: Unable to send data to ASR\n");
+ error("ERROR: Unable to send data to ASR. Sent %u of %u bytes.\n", bytes, size);
return -1;
}