summaryrefslogtreecommitdiff
path: root/src/util_mfld_blackbay.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util_mfld_blackbay.c')
-rw-r--r--src/util_mfld_blackbay.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util_mfld_blackbay.c b/src/util_mfld_blackbay.c
index b05273f..bb17c26 100644
--- a/src/util_mfld_blackbay.c
+++ b/src/util_mfld_blackbay.c
@@ -51,7 +51,7 @@ size_t channel_read(GIOChannel *channel, void* buf, size_t nbytes)
read_count++;
- err("g_io_channel_read_chars.. status[%d] rbytes =%d read_count = %d", status, rbytes, read_count);
+ dbg("g_io_channel_read_chars.. status[%d] rbytes =%d read_count = %d", status, rbytes, read_count);
bytes_read += rbytes;
toread -= rbytes;
@@ -126,7 +126,7 @@ void util_hex_dump(char *pad, int size, const void *data)
unsigned char *p;
if (size <= 0) {
- msg("%sno data", pad);
+ dbg("<%s> no data", pad);
return;
}
@@ -148,6 +148,6 @@ void util_hex_dump(char *pad, int size, const void *data)
}
}
- msg("%s", buf);
+ dbg("<%s>", buf);
}