From 7f202ea8c325a94fbef1392ad8268e6ab69162f2 Mon Sep 17 00:00:00 2001 From: sleske Date: Thu, 5 Jul 2012 20:39:42 +0000 Subject: Fix:core:Reduce debug output, use dbg() instead of printf. git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5182 ffa7fe5e-494d-0410-b361-a75ebd5db220 --- navit/track.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'navit/track.c') diff --git a/navit/track.c b/navit/track.c index c75b77e44..7ee12a8f6 100644 --- a/navit/track.c +++ b/navit/track.c @@ -867,7 +867,7 @@ struct tracking * tracking_ref(struct tracking *this_) { this_->refcount++; - dbg(0,"refcount %d\n",this_->refcount); + dbg(1,"refcount %d\n",this_->refcount); return this_; } @@ -875,7 +875,7 @@ void tracking_unref(struct tracking *this_) { this_->refcount--; - dbg(0,"refcount %d\n",this_->refcount); + dbg(1,"refcount %d\n",this_->refcount); if (this_->refcount <= 0) tracking_destroy(this_); } -- cgit v1.2.1