Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenesvk committed Nov 27, 2024
1 parent 88f4c62 commit 64f07c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/core/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def notify(window: Optional[sublime.Window], message: str, status: str = 'LSP: s
from .settings import userprefs
if userprefs().suppress_error_dialogs:
if window:
window.status_message(status) # print short message to statusbar
window.status_message(status)
else:
sublime.status_message(status)
print(message) # print full message to console log
Expand All @@ -63,7 +63,7 @@ def notify_error(window: Optional[sublime.Window], message: str, status: str = '
from .settings import userprefs
if userprefs().suppress_error_dialogs:
if window:
window.status_message(status) # print short message to statusbar
window.status_message(status)
else:
sublime.status_message(status)
print(message) # print full message to console log
Expand Down

0 comments on commit 64f07c8

Please sign in to comment.