Do not print notifications for new threads

This information is hardly going to be useful to a user of Delve and if
the user really needs information on new threads they can simply using
the provided commands to list and switch between threads.
This commit is contained in:
Derek Parker 2015-05-01 15:37:17 -05:00
parent 9040ec1af1
commit e8edb043d7
2 changed files with 0 additions and 2 deletions

@ -111,7 +111,6 @@ func (dbp *DebuggedProcess) addThread(port int, attach bool) (*ThreadContext, er
if thread, ok := dbp.Threads[port]; ok {
return thread, nil
}
fmt.Println("new thread spawned", port)
thread := &ThreadContext{
Id: port,
Process: dbp,

@ -65,7 +65,6 @@ func (dbp *DebuggedProcess) addThread(tid int, attach bool) (*ThreadContext, err
if thread, ok := dbp.Threads[tid]; ok {
return thread, nil
}
fmt.Println("new thread spawned", tid)
if attach {
err := sys.PtraceAttach(tid)