diff options
author | Jean-François Micouleau <jfm@samba.org> | 2001-12-05 15:45:36 +0000 |
---|---|---|
committer | Jean-François Micouleau <jfm@samba.org> | 2001-12-05 15:45:36 +0000 |
commit | 791788ea9ddc13e3ba4d28044622e09e61bd1152 (patch) | |
tree | 8d45f97f1db04fa8e5fb0cc7f4dfbe03dd03003f /source3 | |
parent | 7b53a92f59984211e5ceb731163efa6e767e55a3 (diff) | |
download | samba-791788ea9ddc13e3ba4d28044622e09e61bd1152.tar.gz samba-791788ea9ddc13e3ba4d28044622e09e61bd1152.tar.bz2 samba-791788ea9ddc13e3ba4d28044622e09e61bd1152.zip |
changed the DEBUG level of tdb_pack and tdb_unpack. Instead of 8, it's now
18.
when you're looking at a level 10, and it's all clutered with
tdb_pack/unpack, it's getting .... And anyway most of our code using
tdb_pack/unpack have DEBUG around the call if there is a problem.
J.F.
(This used to be commit 7e20fad5ed00be4594bfc45603db89d600f46c55)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/tdb/tdbutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/tdb/tdbutil.c b/source3/tdb/tdbutil.c index d256db3bb7..9e24562118 100644 --- a/source3/tdb/tdbutil.c +++ b/source3/tdb/tdbutil.c @@ -251,7 +251,7 @@ size_t tdb_pack(char *buf, int bufsize, char *fmt, ...) va_end(ap); - DEBUG(8,("tdb_pack(%s, %d) -> %d\n", + DEBUG(18,("tdb_pack(%s, %d) -> %d\n", fmt0, bufsize0, (int)PTR_DIFF(buf, buf0))); return PTR_DIFF(buf, buf0); @@ -348,7 +348,7 @@ int tdb_unpack(char *buf, int bufsize, char *fmt, ...) va_end(ap); - DEBUG(8,("tdb_unpack(%s, %d) -> %d\n", + DEBUG(18,("tdb_unpack(%s, %d) -> %d\n", fmt0, bufsize0, (int)PTR_DIFF(buf, buf0))); return PTR_DIFF(buf, buf0); |