Skip to content

Commit

Permalink
fix: large logs
Browse files Browse the repository at this point in the history
fixes #93
  • Loading branch information
kiyoon authored Sep 18, 2023
1 parent 29f04cf commit ac2ee11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jupynium/cmds/jupynium.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def main():
log_path = os.path.join(tmp_log_dir, f"{datetime.now():%Y-%m-%d_%H-%M-%S}.log")

f_handler = logging.FileHandler(log_path)
f_handler.setLevel(logging.DEBUG)
f_handler.setLevel(logging.INFO)
f_format = logging.Formatter(
"%(asctime)s - %(name)s: %(lineno)4d - %(levelname)s - %(message)s"
)
Expand Down

0 comments on commit ac2ee11

Please sign in to comment.