Skip to content

Commit 2dac037

Browse files
committed
Add some print statement to debug travis failures
1 parent 4d4656d commit 2dac037

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

rubylib/vdebug.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ def running?
4040
end
4141

4242
def connected?
43-
vim.command(
43+
is_connected = vim.command(
4444
"python print debugger.runner.is_alive()"
45-
) == "True"
45+
)
46+
puts "Connected? #{is_connected.inspect}"
47+
is_connected == "True"
4648
end
4749

4850
def watch_window_content

0 commit comments

Comments
 (0)