Skip to content

Commit

Permalink
Enable DEBUG logging for testing bubblejail
Browse files Browse the repository at this point in the history
  • Loading branch information
igo95862 committed Oct 8, 2023
1 parent 806acc9 commit 73dca54
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/run_test_bubblejail.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from __future__ import annotations

from argparse import ArgumentParser
from logging import DEBUG, basicConfig
from os import environ
from pathlib import Path
from readline import read_history_file, set_history_length, write_history_file
Expand Down Expand Up @@ -67,6 +68,8 @@ def shell_main() -> None:
read_history_file(history_file)
set_history_length(1000)

basicConfig(level=DEBUG)

while True:
try:
input_line = input('bubblejail>> ')
Expand Down

0 comments on commit 73dca54

Please sign in to comment.