summaryrefslogtreecommitdiff
path: root/gpsd.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-01-27 20:53:09 -0500
committerEric S. Raymond <esr@thyrsus.com>2015-01-27 20:53:28 -0500
commit84eeb350ed01f2c1fa5b663ca449fe2578f8e8bb (patch)
tree22a6135e57c7809c5925c6c22a48b4088839a181 /gpsd.c
parent6b25dd2984abb7cfed6215ceac969104d1f5a83f (diff)
downloadgpsd-84eeb350ed01f2c1fa5b663ca449fe2578f8e8bb.tar.gz
Reduce log verbosity.
Diffstat (limited to 'gpsd.c')
-rw-r--r--gpsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpsd.c b/gpsd.c
index d734f178..9f3b7ab0 100644
--- a/gpsd.c
+++ b/gpsd.c
@@ -1837,8 +1837,8 @@ static void adaptive_delay(void)
if (delay > (useconds_t) (500000UL/mightbuzz) )
delay = (useconds_t) (500000UL/mightbuzz);
#endif /* __UNUSED__ */
- gpsd_report(&context.errout, LOG_WARN,
- "select() bug found, sleeping for %u usec\n",delay);
+ gpsd_report(&context.errout, LOG_SPIN,
+ "adaptive delay, sleeping for %u usec\n",delay);
(void) usleep(delay);
}
return;