Skip to content

Commit

Permalink
fix issue #2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmachard committed Oct 21, 2020
1 parent df67f06 commit 2b97a2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pdns_logger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.0.2"
__version__ = "0.0.3"

from pdns_logger.receiver import start_receiver
3 changes: 2 additions & 1 deletion pdns_logger/receiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
from pdns_logger import protobuf

# configure logs
logging.basicConfig(format='%(asctime)s %(message)s', level=logging.DEBUG)
logging.basicConfig(format='%(asctime)s %(message)s',
stream=sys.stdout, level=logging.DEBUG)

parser = argparse.ArgumentParser()
parser.add_argument("-l",
Expand Down

0 comments on commit 2b97a2f

Please sign in to comment.