We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
X:nocoverageredesign
1 parent 1aafc37 commit 76067cbCopy full SHA for 76067cb
go/extractor/cli/go-autobuilder/go-autobuilder.go
@@ -487,7 +487,9 @@ func extract(workspace project.GoWorkspace) bool {
487
488
// Build the project and run the extractor.
489
func installDependenciesAndBuild() {
490
- log.Printf("Autobuilder was built with %s, environment has %s\n", runtime.Version(), toolchain.GetEnvGoVersion())
+ // do not print experiments the autobuilder was built with if any, only the version
491
+ version := strings.SplitN(runtime.Version(), " ", 2)[0]
492
+ log.Printf("Autobuilder was built with %s, environment has %s\n", version, toolchain.GetEnvGoVersion())
493
494
srcdir := getSourceDir()
495
0 commit comments