Skip to content

Commit

Permalink
remove outbox debug logging (#39)
Browse files Browse the repository at this point in the history
logging: remove explicit settings of debug level
  • Loading branch information
NiklasNeugebauer authored Oct 31, 2024
1 parent 285160f commit acd1876
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion learning_loop_node/detector/outbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class OutboxMode(Enum):
class Outbox():
def __init__(self) -> None:
self.log = logging.getLogger()
self.log.setLevel(logging.DEBUG)
self.path = f'{GLOBALS.data_folder}/outbox'
os.makedirs(self.path, exist_ok=True)

Expand Down

0 comments on commit acd1876

Please sign in to comment.