logging: demote "no auth" to DEBUG level, fixes #415

This commit is contained in:
Thomas Waldmann 2019-04-09 20:12:10 +02:00
parent f2bbbe7da6
commit 849c06d6d4

View File

@ -206,7 +206,8 @@ class NicUpdateView(View):
hostname = request.GET.get('hostname') hostname = request.GET.get('hostname')
auth = request.META.get('HTTP_AUTHORIZATION') auth = request.META.get('HTTP_AUTHORIZATION')
if auth is None: if auth is None:
logger.warning('%s - received no auth' % (hostname, )) # logging this at debug level because otherwise it fills our logs...
logger.debug('%s - received no auth' % (hostname, ))
return basic_challenge("authenticate to update DNS", 'badauth') return basic_challenge("authenticate to update DNS", 'badauth')
username, password = basic_authenticate(auth) username, password = basic_authenticate(auth)
if '.' not in username: # username MUST be the fqdn if '.' not in username: # username MUST be the fqdn