summaryrefslogtreecommitdiff
path: root/libgpsd_core.c
diff options
context:
space:
mode:
authorMichael Ledford <michael@ledford.cc>2009-12-03 15:18:07 +0000
committerMichael Ledford <michael@ledford.cc>2009-12-03 15:18:07 +0000
commitfd7599a70470fa09f1bae498c2970c58a9e21eb8 (patch)
tree48b9b56cb26d2f92fd96a60d8927701979925025 /libgpsd_core.c
parent6eaa6987482abc813c59293ca0a2471e055a5087 (diff)
downloadgpsd-fd7599a70470fa09f1bae498c2970c58a9e21eb8.tar.gz
Removing logging put in place for debugging failing tests on Mac OS X.
Diffstat (limited to 'libgpsd_core.c')
-rw-r--r--libgpsd_core.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libgpsd_core.c b/libgpsd_core.c
index a50e9ce8..37661c86 100644
--- a/libgpsd_core.c
+++ b/libgpsd_core.c
@@ -506,8 +506,6 @@ void gpsd_error_model(struct gps_device_t *session,
double adj = earth_distance(
oldfix->latitude, oldfix->longitude,
fix->latitude, fix->longitude);
- gpsd_report(LOG_RAW, "gpsd_error_model(): %2.30f = earth_distance(%2.30f, %2.30f, %2.30f, %2.30f)\n", adj, oldfix->latitude, oldfix->longitude, fix->latitude, fix->longitude);
- gpsd_report(LOG_RAW, "gpsd_error_model(): fix->epx = %2.30f; fix->epy = %2.30f\n", fix->epx, fix->epy);
if (isnan(adj)==0 && adj > EMIX(fix->epx, fix->epy)) {
double opp = EMIX(fix->epx, fix->epy);
double hyp = sqrt(adj*adj + opp*opp);