aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorZhenguo Niu <Niu.ZGlinux@gmail.com>2018-04-06 18:42:11 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-04-06 18:42:11 +0800
commitc43792a42cad46a15ee00417d52bd3859a98500c (patch)
treee83086f642bf49baa591a33a070bb1db8705a059 /cmd
parent50dbe8e2444cfc171930cb82cc99017f6a0aadf2 (diff)
downloadgo-tangerine-c43792a42cad46a15ee00417d52bd3859a98500c.tar
go-tangerine-c43792a42cad46a15ee00417d52bd3859a98500c.tar.gz
go-tangerine-c43792a42cad46a15ee00417d52bd3859a98500c.tar.bz2
go-tangerine-c43792a42cad46a15ee00417d52bd3859a98500c.tar.lz
go-tangerine-c43792a42cad46a15ee00417d52bd3859a98500c.tar.xz
go-tangerine-c43792a42cad46a15ee00417d52bd3859a98500c.tar.zst
go-tangerine-c43792a42cad46a15ee00417d52bd3859a98500c.zip
cmd/geth: update template for 'geth bug' command (#16350)
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/bugcmd.go24
1 files changed, 14 insertions, 10 deletions
diff --git a/cmd/geth/bugcmd.go b/cmd/geth/bugcmd.go
index ce9dbe6c0..51187ac90 100644
--- a/cmd/geth/bugcmd.go
+++ b/cmd/geth/bugcmd.go
@@ -49,15 +49,17 @@ func reportBug(ctx *cli.Context) error {
// execute template and write contents to buff
var buff bytes.Buffer
- fmt.Fprintln(&buff, header)
+ fmt.Fprintln(&buff, "#### System information")
+ fmt.Fprintln(&buff)
fmt.Fprintln(&buff, "Version:", params.Version)
fmt.Fprintln(&buff, "Go Version:", runtime.Version())
fmt.Fprintln(&buff, "OS:", runtime.GOOS)
printOSDetails(&buff)
+ fmt.Fprintln(&buff, header)
// open a new GH issue
if !browser.Open(issueUrl + "?body=" + url.QueryEscape(buff.String())) {
- fmt.Printf("Please file a new issue at %s using this template:\n%s", issueUrl, buff.String())
+ fmt.Printf("Please file a new issue at %s using this template:\n\n%s", issueUrl, buff.String())
}
return nil
}
@@ -97,13 +99,15 @@ func printCmdOut(w io.Writer, prefix, path string, args ...string) {
fmt.Fprintf(w, "%s%s\n", prefix, bytes.TrimSpace(out))
}
-const header = `Please answer these questions before submitting your issue. Thanks!
+const header = `
+#### Expected behaviour
+
+
+#### Actual behaviour
+
+
+#### Steps to reproduce the behaviour
+
-#### What did you do?
-
-#### What did you expect to see?
-
-#### What did you see instead?
-
-#### System details
+#### Backtrace
`