summaryrefslogtreecommitdiff
path: root/tsip.c
diff options
context:
space:
mode:
authorChris Kuethe <chris.kuethe@gmail.com>2006-11-25 23:16:52 +0000
committerChris Kuethe <chris.kuethe@gmail.com>2006-11-25 23:16:52 +0000
commitf5585aff719b26ebd300a00289ebde01a374f4f8 (patch)
tree32e69e4c5f85b890d8b9a3ec6bc57c0a33c31568 /tsip.c
parent5d52283cd20793e3dd3590865d3660ec161c9fb3 (diff)
downloadgpsd-f5585aff719b26ebd300a00289ebde01a374f4f8.tar.gz
lower the log level required to print these messages...
...so I don't have to wade through all the packet sniffer output.
Diffstat (limited to 'tsip.c')
-rw-r--r--tsip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tsip.c b/tsip.c
index cb169735..bfe10b98 100644
--- a/tsip.c
+++ b/tsip.c
@@ -24,7 +24,7 @@ static int tsip_write(int fd, unsigned int id, unsigned char *buf, size_t len)
#ifdef ALLOW_RECONFIGURE
char buf2[BUFSIZ];
- gpsd_report(LOG_RAW, "Sent TSIP packet id 0x%02x: %s\n",id,gpsd_hexdump(buf,len));
+ gpsd_report(LOG_IO, "Sent TSIP packet id 0x%02x: %s\n",id,gpsd_hexdump(buf,len));
/*@ +charint @*/
buf2[0] = '\x10';
@@ -48,7 +48,7 @@ static int tsip_write(int fd, unsigned int id, unsigned char *buf, size_t len)
return 0;
#else
- gpsd_report(LOG_RAW, "Not sending TSIP packet id 0x%02x: %s\n",id,gpsd_hexdump(buf,len));
+ gpsd_report(LOG_IO, "Not sending TSIP packet id 0x%02x: %s\n",id,gpsd_hexdump(buf,len));
return -1;
#endif /* ALLOW_RECONFIGURE */
}