diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-05-03 14:48:57 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-05-06 14:50:38 +0200 |
commit | 3e9b760406802b8fc8e82c13ac69fbe4a6b921da (patch) | |
tree | 31335ec1eab97f1175cfdd3d6702c389bcceb345 /source3/lib | |
parent | c2b094ffbc8ace231ed53175c1c694539e3d2e2c (diff) | |
download | samba-3e9b760406802b8fc8e82c13ac69fbe4a6b921da.tar.gz samba-3e9b760406802b8fc8e82c13ac69fbe4a6b921da.tar.bz2 samba-3e9b760406802b8fc8e82c13ac69fbe4a6b921da.zip |
s3:idmap_cache: change DEBUG message to level 10
metze
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/idmap_cache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/idmap_cache.c b/source3/lib/idmap_cache.c index 773579bd14..3669e93e58 100644 --- a/source3/lib/idmap_cache.c +++ b/source3/lib/idmap_cache.c @@ -54,7 +54,8 @@ bool idmap_cache_find_sid2unixid(const struct dom_sid *sid, struct unixid *id, return false; } tmp_id.id = strtol(value, &endptr, 10); - DEBUG(0, ("Parsing result of %s, endptr=%s, id=%llu\n", key, endptr, (unsigned long long)tmp_id.id)); + DEBUG(10, ("Parsing result of %s, endptr=%s, id=%llu\n", + key, endptr, (unsigned long long)tmp_id.id)); ret = (*endptr == ':'); if (ret) { |