From d9259559fb26a3466d961d09e4a02ed77da1a35c Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Mon, 13 Apr 2009 12:55:41 -0700 Subject: [PATCH] add "bti:" to the beginning of all debug messages This makes it a bit easier to parse what is going on. --- bti.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bti.c b/bti.c index 6fffef5..2e7e2d3 100644 --- a/bti.c +++ b/bti.c @@ -43,7 +43,8 @@ #define dbg(format, arg...) \ do { \ if (debug) \ - printf("%s: " format , __func__ , ## arg); \ + fprintf(stdout, "bti: %s: " format , __func__ , \ + ## arg); \ } while (0) -- 2.39.5