delve/service/debugger/debugger_darwin.go

11 lines
185 B
Go
Raw Normal View History

package debugger
import (
"fmt"
)
func attachErrorMessage(pid int, err error) error {
//TODO: mention certificates?
return fmt.Errorf("could not attach to pid %d: %s", pid, err)
}