diff options
author | Michael Adam <obnox@samba.org> | 2007-09-29 07:18:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:31:04 -0500 |
commit | 9cffea618a13d37a82980ade71bb1ec927c153a0 (patch) | |
tree | 39970867f4a7fc0bde06d3c62cebc03ee2503aec | |
parent | b12e11f29f7b6f02960c1f87cb87c0341403246c (diff) | |
download | samba-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)
-rw-r--r-- | source3/lib/debug.c | 2 |
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 ); } |