Skip to content

Commit

Permalink
Debug Windows failure on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed May 19, 2021
1 parent 2cf698a commit 770a4b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions atest/01_Editor.robot
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ Editor Shows Features for Language
Editor Should Show Diagnostics
[Arguments] ${diagnostic}
Set Tags feature:diagnostics
Wait Until Page Contains Element css:.cm-lsp-diagnostic[title*="${diagnostic}"] timeout=20s
Capture Page Screenshot 01-diagnostics.png
Open Diagnostics Panel
Capture Page Screenshot 02-diagnostics.png
${count} = Count Diagnostics In Panel
Should Be True ${count} >= 1
# Should Be True ${count} >= 1
Close Diagnostics Panel
Wait Until Page Contains Element css:.cm-lsp-diagnostic[title*="${diagnostic}"] timeout=40s

Editor Content Changed
[Arguments] ${old_content}
Expand Down
2 changes: 1 addition & 1 deletion python_packages/jupyter_lsp/jupyter_lsp/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def open(self, language_server):
super().open()

async def on_message(self, message):
self.log.debug("[{}] Handling a message".format(self.language_server))
self.log.warn("[%s] Handling a message: %s", self.language_server, message)
await self.manager.on_client_message(message, self)

def on_close(self):
Expand Down

0 comments on commit 770a4b8

Please sign in to comment.