summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-06-24 11:23:59 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-06-24 11:23:59 +0000
commitac31b18e214e131dc255707ee97ba6043e5c66f2 (patch)
treeafd62fd8fe0dbd898cde724679cc80aa40aeae64
parent4fbbbfb9e01d22d513e27a202f5a616d555ee3b0 (diff)
downloadnavit-ac31b18e214e131dc255707ee97ba6043e5c66f2.tar.gz
Fix:Core:Less verbosity
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@3392 ffa7fe5e-494d-0410-b361-a75ebd5db220
-rw-r--r--navit/route.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/navit/route.c b/navit/route.c
index 8de56d048..5d187c85e 100644
--- a/navit/route.c
+++ b/navit/route.c
@@ -664,7 +664,7 @@ route_path_update_done(struct route *this, int new_graph)
/* FIXME */
int seg_time=route_time_seg(this->vehicleprofile, seg->data, NULL);
if (seg_time == INT_MAX) {
- dbg(0,"error\n");
+ dbg(1,"error\n");
} else
path_time+=seg_time;
path_len+=seg->data->len;
@@ -3371,7 +3371,7 @@ route_get_attr(struct route *this_, enum attr_type type, struct attr *attr, stru
if (this_->path2 && (this_->route_status == route_status_path_done_new || this_->route_status == route_status_path_done_incremental)) {
attr->u.num=this_->path2->path_time;
- dbg(0,"path_time %d\n",attr->u.num);
+ dbg(1,"path_time %d\n",attr->u.num);
}
else
ret=0;