summaryrefslogtreecommitdiff
path: root/source3/lib/debug.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-09-29 07:18:23 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:04 -0500
commit9cffea618a13d37a82980ade71bb1ec927c153a0 (patch)
tree39970867f4a7fc0bde06d3c62cebc03ee2503aec /source3/lib/debug.c
parentb12e11f29f7b6f02960c1f87cb87c0341403246c (diff)
downloadsamba-9cffea618a13d37a82980ade71bb1ec927c153a0.tar.gz
samba-9cffea618a13d37a82980ade71bb1ec927c153a0.tar.bz2
samba-9cffea618a13d37a82980ade71bb1ec927c153a0.zip
r25424: Align log level (by two) in debugging output.
Michael (This used to be commit 9265b3cde25208884a8d3a9c42461d1c6e6fc353)
Diffstat (limited to 'source3/lib/debug.c')
-rw-r--r--source3/lib/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/debug.c b/source3/lib/debug.c
index 6aa34b59e8..fc7b1d67f6 100644
--- a/source3/lib/debug.c
+++ b/source3/lib/debug.c
@@ -983,7 +983,7 @@ BOOL dbghdr( int level, const char *file, const char *func, int line )
current_timestring(lp_debug_hires_timestamp()), level,
header_str);
} else {
- (void)Debug1( "[%s, %d%s] %s:%s(%d)\n",
+ (void)Debug1( "[%s, %2d%s] %s:%s(%d)\n",
current_timestring(lp_debug_hires_timestamp()), level,
header_str, file, func, line );
}