From: Stefan Metzmacher Date: Thu, 3 May 2012 12:48:57 +0000 (+0200) Subject: s3:idmap_cache: change DEBUG message to level 10 X-Git-Tag: samba-4.0.0alpha21~331 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=3e9b760406802b8fc8e82c13ac69fbe4a6b921da s3:idmap_cache: change DEBUG message to level 10 metze --- diff --git a/source3/lib/idmap_cache.c b/source3/lib/idmap_cache.c index 773579bd14f..3669e93e58f 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) {