Skip to content

Commit

Permalink
updating a vsub logging.py
Browse files Browse the repository at this point in the history
  • Loading branch information
byt3n33dl3 authored Jun 17, 2024
1 parent e2f08c2 commit 0a3d258
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kerberos/network/logging.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@

import network
import logging

from netx import conftest.py

logger = logging.getLogger(__name__)
handler = logging.StreamHandler()
formatter = logging.Formatter(
'%(asctime)s %(name)-12s %(levelname)-8s %(message)s')
handler.setFormatter(formatter)
logger.addHandler(handler)
logger.subLogger(logger)
logger.setLevel(logging.INFO)

0 comments on commit 0a3d258

Please sign in to comment.