Skip to content

Commit 744b4bd

Browse files
Merge pull request #353 from vim-vdebug/issue-312-stop-command-after-connection-received
add to the logging if you are using break_on_open or not
2 parents dccf5a0 + 07f8b59 commit 744b4bd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pythonx/vdebug/session.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,10 @@ def start(self, connection):
214214
self.__initialize_breakpoints()
215215

216216
if opts.Options.get('break_on_open', int) == 1:
217+
log.Log('starting with step_into (break_on_open = 1)', log.Logger.DEBUG)
217218
status = self.__api.step_into()
218219
else:
220+
log.Log('starting with run (break_on_open = 0)', log.Logger.DEBUG)
219221
status = self.__api.run()
220222
return status
221223
except Exception:

0 commit comments

Comments
 (0)