Fix:core:Reduce debug output, use dbg() instead of printf.
[profile/ivi/navit.git] / navit / navit / coord.c
index 58fa4b1..45729ec 100644 (file)
@@ -104,7 +104,7 @@ coord_rect_overlap(struct coord_rect *r1, struct coord_rect *r2)
        dbg_assert(r1->lu.y >= r1->rl.y);
        dbg_assert(r2->lu.x <= r2->rl.x);
        dbg_assert(r2->lu.y >= r2->rl.y);
-       dbg(1,"0x%x,0x%x - 0x%x,0x%x vs 0x%x,0x%x - 0x%x,0x%x\n", r1->lu.x, r1->lu.y, r1->rl.x, r1->rl.y, r2->lu.x, r2->lu.y, r2->rl.x, r2->rl.y);
+       dbg(3,"0x%x,0x%x - 0x%x,0x%x vs 0x%x,0x%x - 0x%x,0x%x\n", r1->lu.x, r1->lu.y, r1->rl.x, r1->rl.y, r2->lu.x, r2->lu.y, r2->rl.x, r2->rl.y);
        if (r1->lu.x > r2->rl.x)
                return 0;
        if (r1->rl.x < r2->lu.x)