debug: Add version number to debug log

This commit is contained in:
Alexander Neumann 2017-06-11 14:17:44 +02:00
parent 58de8bf392
commit 907c201693
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import (
"restic"
"restic/debug"
"restic/options"
"runtime"
"github.com/spf13/cobra"
@ -57,6 +58,8 @@ func init() {
func main() {
debug.Log("main %#v", os.Args)
debug.Log("restic %s, compiled with %v on %v/%v",
version, runtime.Version(), runtime.GOOS, runtime.GOARCH)
err := cmdRoot.Execute()
switch {