summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-02-20 10:14:17 +0000
committerAndrew Tridgell <tridge@samba.org>2001-02-20 10:14:17 +0000
commitbbf58942b7bc439c17733b579c1874ef77740a6f (patch)
tree2180b4250ec7b1ad0face1677d76d8fab2e0de0d /source3/lib
parent751ba9d0510a29d9a2dd1eafa5abb45e817c99fe (diff)
downloadsamba-bbf58942b7bc439c17733b579c1874ef77740a6f.tar.gz
samba-bbf58942b7bc439c17733b579c1874ef77740a6f.tar.bz2
samba-bbf58942b7bc439c17733b579c1874ef77740a6f.zip
up the debug level of the debug level change msg
(This used to be commit 9b25342f4ac4a250b3a10a3bb048ca6baa2ca41e)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/debug.c b/source3/lib/debug.c
index 119292b781..2ba35c00db 100644
--- a/source3/lib/debug.c
+++ b/source3/lib/debug.c
@@ -234,13 +234,13 @@ void debug_message(int msg_type, pid_t src, void *buf, size_t len)
/* Set the new DEBUGLEVEL_CLASS array from the pased array */
memcpy(DEBUGLEVEL_CLASS, buf, sizeof(DEBUGLEVEL_CLASS));
- DEBUG(1,("INFO: Debug class %s level = %d (pid %d from pid %d)\n",
+ DEBUG(3,("INFO: Debug class %s level = %d (pid %d from pid %d)\n",
classname_table[DBGC_ALL],
DEBUGLEVEL_CLASS[DBGC_ALL], getpid(), (int)src));
for (i=1; i<DBGC_LAST; i++) {
if (DEBUGLEVEL_CLASS[i])
- DEBUGADD(1,("INFO: Debug class %s level = %d\n",
+ DEBUGADD(3,("INFO: Debug class %s level = %d\n",
classname_table[i], DEBUGLEVEL_CLASS[i]));
}
}