diff options
author | Andreas Schneider <asn@samba.org> | 2011-03-24 10:44:14 +0100 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2011-03-24 14:57:11 -0400 |
commit | bf1e330f69951400f12ecb17c82adadd1e901a58 (patch) | |
tree | 71ad21922fcaf2aab79937672e0f2b8db7086f90 /source3/rpc_server | |
parent | 155c4fbc10ce3f47428402efd30eec732ab7a803 (diff) | |
download | samba-bf1e330f69951400f12ecb17c82adadd1e901a58.tar.gz samba-bf1e330f69951400f12ecb17c82adadd1e901a58.tar.bz2 samba-bf1e330f69951400f12ecb17c82adadd1e901a58.zip |
s3-epmapper: Increase debug levels.
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/epmapper/srv_epmapper.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/source3/rpc_server/epmapper/srv_epmapper.c b/source3/rpc_server/epmapper/srv_epmapper.c index da998eb534..fa64c32b10 100644 --- a/source3/rpc_server/epmapper/srv_epmapper.c +++ b/source3/rpc_server/epmapper/srv_epmapper.c @@ -509,14 +509,14 @@ error_status_t _epm_Lookup(struct pipes_struct *p, return EPMAPPER_STATUS_NO_MEMORY; } - DEBUG(3, ("_epm_Lookup: Trying to lookup max. %u entries.\n", + DEBUG(5, ("_epm_Lookup: Trying to lookup max. %u entries.\n", r->in.max_ents)); if (r->in.entry_handle == NULL || policy_handle_empty(r->in.entry_handle)) { struct GUID *obj; - DEBUG(5, ("_epm_Lookup: No entry_handle found, creating it.\n")); + DEBUG(7, ("_epm_Lookup: No entry_handle found, creating it.\n")); eps = talloc_zero(tmp_ctx, struct rpc_eps); if (eps == NULL) { @@ -600,7 +600,7 @@ error_status_t _epm_Lookup(struct pipes_struct *p, } entry_handle = r->out.entry_handle; } else { - DEBUG(5, ("_epm_Lookup: Trying to find entry_handle.\n")); + DEBUG(7, ("_epm_Lookup: Trying to find entry_handle.\n")); ok = find_policy_by_hnd(p, r->in.entry_handle, (void **)(void*) &eps); if (!ok) { @@ -621,7 +621,7 @@ error_status_t _epm_Lookup(struct pipes_struct *p, count = eps->count; } - DEBUG(3, ("_epm_Lookup: Find %u entries\n", count)); + DEBUG(5, ("_epm_Lookup: Find %u entries\n", count)); if (count == 0) { close_policy_hnd(p, entry_handle); @@ -846,7 +846,7 @@ error_status_t _epm_Map(struct pipes_struct *p, ZERO_STRUCTP(r->out.entry_handle); - DEBUG(3, ("_epm_Map: Trying to map max. %u towers.\n", + DEBUG(5, ("_epm_Map: Trying to map max. %u towers.\n", r->in.max_towers)); /* @@ -897,7 +897,7 @@ error_status_t _epm_Map(struct pipes_struct *p, policy_handle_empty(r->in.entry_handle)) { struct GUID *obj; - DEBUG(5, ("_epm_Map: No entry_handle found, creating it.\n")); + DEBUG(7, ("_epm_Map: No entry_handle found, creating it.\n")); eps = talloc_zero(tmp_ctx, struct rpc_eps); if (eps == NULL) { @@ -986,7 +986,7 @@ error_status_t _epm_Map(struct pipes_struct *p, } entry_handle = r->out.entry_handle; } else { - DEBUG(5, ("_epm_Map: Trying to find entry_handle.\n")); + DEBUG(7, ("_epm_Map: Trying to find entry_handle.\n")); ok = find_policy_by_hnd(p, r->in.entry_handle, (void **)(void*) &eps); if (!ok) { @@ -1022,7 +1022,7 @@ error_status_t _epm_Map(struct pipes_struct *p, } for (i = 0; i < count; i++) { - DEBUG(5, ("_epm_Map: Map tower for '%s'\n", + DEBUG(7, ("_epm_Map: Map tower for '%s'\n", eps->e[i].name)); r->out.towers[num_towers].twr = talloc(r->out.towers, |