From 4d04351ac9a0f0a642e5acd29c55c34cb8f941a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatko=20=C4=8Calu=C5=A1i=C4=87?= Date: Mon, 16 Jan 2017 23:19:51 +0100 Subject: [PATCH] Report data directory on startup --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 6657fe7..ccf787f 100644 --- a/main.go +++ b/main.go @@ -81,6 +81,7 @@ func runRoot(cmd *cobra.Command, args []string) error { log.SetFlags(0) log.Printf("rest-server %s compiled with %v on %v/%v\n", version, runtime.Version(), runtime.GOOS, runtime.GOARCH) + log.Printf("Data directory: %s", config.path) if config.cpuprofile != "" { f, err := os.Create(config.cpuprofile)