mirror of https://github.com/golang/go.git
internal/trace: fix up debug commands
They were still referencing the old internal/trace/v2 packages, and gotraceeventstats had an extra layer of cmd directory (not sure why, maybe it was always like that). Change-Id: Ieba48074ff36ea86c467168568751177d80db31d Reviewed-on: https://go-review.googlesource.com/c/go/+/586998 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
efe7a1f5d3
commit
1110c4095e
|
|
@ -15,8 +15,8 @@ import (
|
|||
"slices"
|
||||
"text/tabwriter"
|
||||
|
||||
"internal/trace/v2/event"
|
||||
"internal/trace/v2/raw"
|
||||
"internal/trace/event"
|
||||
"internal/trace/raw"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
@ -11,8 +11,8 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"internal/trace/v2/raw"
|
||||
"internal/trace/v2/version"
|
||||
"internal/trace/raw"
|
||||
"internal/trace/version"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"internal/trace/v2"
|
||||
"internal/trace/v2/testtrace"
|
||||
"internal/trace"
|
||||
"internal/trace/testtrace"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue