From: Björn Jacke Date: Wed, 28 Jun 2023 11:56:53 +0000 (+0200) Subject: wb_dsgetdcname.c: move common message to higher log level X-Git-Tag: talloc-2.4.1~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7475df4f87a5061e84fec67702848d5a87f451e9;p=thirdparty%2Fsamba.git wb_dsgetdcname.c: move common message to higher log level Signed-off-by: Bjoern Jacke Reviewed-by: Andrew Bartlett --- diff --git a/source3/winbindd/wb_dsgetdcname.c b/source3/winbindd/wb_dsgetdcname.c index 78f220951c1..9aab57d1fcc 100644 --- a/source3/winbindd/wb_dsgetdcname.c +++ b/source3/winbindd/wb_dsgetdcname.c @@ -125,7 +125,7 @@ NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, D_INFO("WB command dsgetdcname end.\n"); if (tevent_req_is_nterror(req, &status)) { - D_WARNING("Failed with %s.\n", nt_errstr(status)); + D_NOTICE("Failed with %s.\n", nt_errstr(status)); return status; } *pdcinfo = talloc_move(mem_ctx, &state->dcinfo);