소스 검색

Fixes: #5199 - Change default logging for LDAP to INFO

Daniel Sheppard 5 년 전
부모
커밋
f2bc824a8e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      netbox/netbox/authentication.py

+ 1 - 1
netbox/netbox/authentication.py

@@ -176,5 +176,5 @@ class LDAPBackend:
         ldap_logger = logging.getLogger('django_auth_ldap')
         ldap_logger.addHandler(logging.StreamHandler())
         ldap_logger.setLevel(logging.INFO if settings.DEBUG is False else logging.DEBUG)
-        ldap_logger.info('Set Logging')
+
         return obj