diff options
author | Kai Blin <kai@samba.org> | 2012-09-06 22:53:32 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2012-09-07 00:31:56 +0200 |
commit | 8ba802058644910741dc80940420781450a924b7 (patch) | |
tree | 242b71c55f8cbb0863ddbf96a244e3c15c3b67cf /source4/dns_server/dns_update.c | |
parent | 319b239dc4aeb2c6a928a70fc7a7dbad56d273cd (diff) | |
download | samba-8ba802058644910741dc80940420781450a924b7.tar.gz samba-8ba802058644910741dc80940420781450a924b7.tar.bz2 samba-8ba802058644910741dc80940420781450a924b7.zip |
s4 dns: Make debug output less noisy
Autobuild-User(master): Kai Blin <kai@samba.org>
Autobuild-Date(master): Fri Sep 7 00:31:56 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4/dns_server/dns_update.c')
-rw-r--r-- | source4/dns_server/dns_update.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/source4/dns_server/dns_update.c b/source4/dns_server/dns_update.c index 5eca0a4c27..2df0b580e4 100644 --- a/source4/dns_server/dns_update.c +++ b/source4/dns_server/dns_update.c @@ -436,10 +436,10 @@ static WERROR handle_one_update(struct dns_server *dns, tkey->session_info->security_token, access_mask, NULL); if (ldb_ret != LDB_SUCCESS) { - DEBUG(0, ("Disallowing update: %s\n", ldb_strerror(ldb_ret))); + DEBUG(5, ("Disallowing update: %s\n", ldb_strerror(ldb_ret))); return DNS_ERR(REFUSED); } - DEBUG(0, ("Allowing signed update\n")); + DEBUG(5, ("Allowing signed update\n")); } if (update->rr_class == zone->question_class) { @@ -450,7 +450,7 @@ static WERROR handle_one_update(struct dns_server *dns, */ for (i = 0; i < rcount; i++) { if (recs[i].wType != DNS_TYPE_CNAME) { - DEBUG(0, ("Skipping update\n")); + DEBUG(5, ("Skipping update\n")); return WERR_OK; } break; @@ -481,7 +481,7 @@ static WERROR handle_one_update(struct dns_server *dns, */ for (i = 0; i < rcount; i++) { if (recs[i].wType == DNS_TYPE_CNAME) { - DEBUG(0, ("Skipping update\n")); + DEBUG(5, ("Skipping update\n")); return WERR_OK; } } @@ -505,7 +505,7 @@ static WERROR handle_one_update(struct dns_server *dns, * logic for RFC2136 */ if (n <= o) { - DEBUG(0, ("Skipping update\n")); + DEBUG(5, ("Skipping update\n")); return WERR_OK; } found = true; @@ -513,7 +513,7 @@ static WERROR handle_one_update(struct dns_server *dns, } } if (!found) { - DEBUG(0, ("Skipping update\n")); + DEBUG(5, ("Skipping update\n")); return WERR_OK; } @@ -675,7 +675,7 @@ static WERROR handle_updates(struct dns_server *dns, werror = check_prerequisites(dns, tmp_ctx, zone, prereqs, pcount); W_ERROR_NOT_OK_GOTO(werror, failed); - DEBUG(0, ("update count is %u\n", upd_count)); + DEBUG(1, ("update count is %u\n", upd_count)); for (ri = 0; ri < upd_count; ri++) { werror = handle_one_update(dns, tmp_ctx, zone, @@ -699,17 +699,17 @@ static WERROR dns_update_allowed(struct dns_server *dns, struct dns_server_tkey **tkey) { if (lpcfg_allow_dns_updates(dns->task->lp_ctx) == DNS_UPDATE_ON) { - DEBUG(0, ("All updates allowed.\n")); + DEBUG(2, ("All updates allowed.\n")); return WERR_OK; } if (lpcfg_allow_dns_updates(dns->task->lp_ctx) == DNS_UPDATE_OFF) { - DEBUG(0, ("Updates disabled.\n")); + DEBUG(2, ("Updates disabled.\n")); return DNS_ERR(REFUSED); } if (state->authenticated == false ) { - DEBUG(0, ("Update not allowed for unsigned packet.\n")); + DEBUG(2, ("Update not allowed for unsigned packet.\n")); return DNS_ERR(REFUSED); } @@ -764,13 +764,13 @@ WERROR dns_server_process_update(struct dns_server *dns, } if (z == NULL) { - DEBUG(0, ("We're not authoritative for this zone\n")); + DEBUG(1, ("We're not authoritative for this zone\n")); return DNS_ERR(NOTAUTH); } if (host_part_len != 0) { /* TODO: We need to delegate this one */ - DEBUG(0, ("Would have to delegate zones.\n")); + DEBUG(1, ("Would have to delegate zones.\n")); return DNS_ERR(NOT_IMPLEMENTED); } |