Skip to content

Commit

Permalink
logging: remove explicit settings of debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasNeugebauer committed Oct 31, 2024
1 parent 3cbbd59 commit 7c4d779
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 7c4d779

Please sign in to comment.