Remove annoying debug output
This commit is contained in:
parent
3c917c86d0
commit
dff7f6ad73
2 changed files with 8 additions and 1 deletions
|
|
@ -479,6 +479,14 @@ class DebugSession( object ):
|
|||
launch_config[ 'name' ] = 'test'
|
||||
|
||||
self._connection.DoRequest(
|
||||
# NOTE: You might think we should only load threads on a stopped event,
|
||||
# but the spec is clear:
|
||||
#
|
||||
# After a successful launch or attach the development tool requests the
|
||||
# baseline of currently existing threads with the threads request and
|
||||
# then starts to listen for thread events to detect new or terminated
|
||||
# threads.
|
||||
#
|
||||
lambda msg: self._stackTraceView.LoadThreads( True ),
|
||||
{
|
||||
'command': launch_config[ 'request' ],
|
||||
|
|
|
|||
|
|
@ -254,7 +254,6 @@ def ExpandReferencesInDict( obj, mapping, **kwargs ):
|
|||
++bug_catcher
|
||||
|
||||
try:
|
||||
UserMessage( 'Dict: {}'.format( str( mapping ) ), persist = True )
|
||||
s = string.Template( s ).substitute( mapping, **kwargs )
|
||||
break
|
||||
except KeyError as e:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue