Skip to content

Commit

Permalink
Use dedicated "kdcproxy" logger
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Rische <[email protected]>
  • Loading branch information
jrisc committed Nov 21, 2024
1 parent 48d0f6e commit c054d97
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions kdcproxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
import httplib
import urlparse

logging.basicConfig()
logger = logging.getLogger('kdcproxy')


class HTTPException(Exception):

Expand Down Expand Up @@ -325,8 +328,8 @@ def __call__(self, env, start_response):
fail_socktype = self.addr2socktypename(fail_addr)
fail_ip = fail_addr[4][0]
fail_port = fail_addr[4][1]
logging.warning("Exchange with %s:[%s]:%d failed: %s",
fail_socktype, fail_ip, fail_port, e)
logger.warning("Exchange with %s:[%s]:%d failed: %s",
fail_socktype, fail_ip, fail_port, e)
if reply is not None:
break

Expand Down
7 changes: 5 additions & 2 deletions kdcproxy/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
import dns.rdatatype
import dns.resolver

logging.basicConfig()
logger = logging.getLogger('kdcproxy')


class IResolver(object):

Expand Down Expand Up @@ -60,14 +63,14 @@ def __init__(self, filenames=None):
try:
self.__cp.read(filenames)
except configparser.Error:
logging.error("Unable to read config file(s): %s", filenames)
logger.error("Unable to read config file(s): %s", filenames)

try:
mod = self.__cp.get(self.GLOBAL, "configs")
try:
importlib.import_module("kdcproxy.config." + mod)
except ImportError as e:
logging.log(logging.ERROR, "Error reading config: %s" % e)
logger.log(logging.ERROR, "Error reading config: %s" % e)
except configparser.Error:
pass

Expand Down

0 comments on commit c054d97

Please sign in to comment.