summaryrefslogtreecommitdiff
path: root/source3/lib/debug.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-07-25 04:10:23 +0000
committerAndrew Tridgell <tridge@samba.org>2001-07-25 04:10:23 +0000
commite845532d7c3bda1ffc22a50b4cbea2a5088ea366 (patch)
treee641bdb5a9d559f04f727b0cf73e290634228768 /source3/lib/debug.c
parente3bbe5d5915d6947ce85c4473b2eebb2ba321fea (diff)
downloadsamba-e845532d7c3bda1ffc22a50b4cbea2a5088ea366.tar.gz
samba-e845532d7c3bda1ffc22a50b4cbea2a5088ea366.tar.bz2
samba-e845532d7c3bda1ffc22a50b4cbea2a5088ea366.zip
got rid of INFO: msgs at debug level 1
(This used to be commit e6773b08a4a1a54dca4a2e2ec5d4e9c43383b072)
Diffstat (limited to 'source3/lib/debug.c')
-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 82872478cf..4dbeda2f73 100644
--- a/source3/lib/debug.c
+++ b/source3/lib/debug.c
@@ -272,13 +272,13 @@ void debug_message(int msg_type, pid_t src, void *buf, size_t len)
memcpy(DEBUGLEVEL_CLASS, dm->debuglevel_class, sizeof(dm->debuglevel_class));
memcpy(DEBUGLEVEL_CLASS_ISSET, dm->debuglevel_class_isset, sizeof(dm->debuglevel_class_isset));
- DEBUG(1,("INFO: Debug class %s level = %d (pid %u from pid %u)\n",
+ DEBUG(3,("INFO: Debug class %s level = %d (pid %u from pid %u)\n",
classname_table[DBGC_ALL],
DEBUGLEVEL_CLASS[DBGC_ALL], (unsigned int)getpid(), (unsigned 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]));
}
}