10 lines
154 B
Go
10 lines
154 B
Go
![]() |
package debugger
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func attachErrorMessage(pid int, err error) error {
|
||
|
return fmt.Errorf("could not attach to pid %d: %s", pid, err)
|
||
|
}
|