From 3e9b760406802b8fc8e82c13ac69fbe4a6b921da Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 3 May 2012 14:48:57 +0200 Subject: s3:idmap_cache: change DEBUG message to level 10 metze --- source3/lib/idmap_cache.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/lib/idmap_cache.c') 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) { -- cgit