From c038b6a37d65ebf23b34e669414cbb959fc7b2a4 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 11 Jun 2010 12:00:06 +0200 Subject: debug.h: call_level is no longer relevant, pretty debug message format --- src/debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/debug.h') diff --git a/src/debug.h b/src/debug.h index db4369d..156bf1c 100644 --- a/src/debug.h +++ b/src/debug.h @@ -43,7 +43,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. { \ if(i <= opt.debug_level) \ { \ - printf("%s +%u %s() %s ",__FILE__,__LINE__,__FUNCTION__, stroflen(' ', call_level)); \ + printf("%-12s +%-4u %-20s : ",__FILE__,__LINE__,__FUNCTION__); \ printf a; \ fflush(stdout); \ } \ @@ -53,7 +53,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. { \ if(i <= opt.debug_level) \ { \ - printf("%s +%u : ",__FILE__,__LINE__); \ + printf("%-12s +%-4u : ",__FILE__,__LINE__); \ printf a; \ } \ fflush(stdout); \ -- cgit v1.2.3