Skip to content

Commit

Permalink
fix getLogger()
Browse files Browse the repository at this point in the history
  • Loading branch information
nakagami committed Aug 13, 2024
1 parent ea621fd commit 50ac3d3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion pyvim/editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
e = Editor(files_to_edit)
e.run() # Runs the event loop, starts interaction.
"""
import logging
from prompt_toolkit.application import Application
from prompt_toolkit.application.application import _CombinedRegistry
from prompt_toolkit.buffer import Buffer
Expand Down
2 changes: 1 addition & 1 deletion pyvim/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ def getLogger():
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
# logger.addHandler(logging.FileHandler("./pyvim.log"))

return logger

0 comments on commit 50ac3d3

Please sign in to comment.