From 8d15aee01757658c62ef301829c4488b4ce70b4d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 9 Jan 2006 20:30:44 +0000 Subject: r12799: print out function and location too metze (This used to be commit a5ef3eef9cbedd273556068ba59c07ccb0060098) --- source4/include/debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/include') diff --git a/source4/include/debug.h b/source4/include/debug.h index eaf53bad6a..d92232c645 100644 --- a/source4/include/debug.h +++ b/source4/include/debug.h @@ -35,7 +35,7 @@ struct debug_ops { void (*log_task_id)(int fd); }; -void do_debug_header(int level); +void do_debug_header(int level, const char *location, const char *func); void do_debug(const char *, ...) PRINTF_ATTRIBUTE(1,2); extern int DEBUGLEVEL; @@ -44,7 +44,7 @@ extern int DEBUGLEVEL; #define _DEBUG(level, body, header) do { \ if (DEBUGLVL(level)) { \ if (header) { \ - do_debug_header(level); \ + do_debug_header(level, __location__, __FUNCTION__); \ } \ do_debug body; \ } \ -- cgit