diff --git a/main.go b/main.go index 285fbce..0e73a9c 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,14 @@ func main() { mediaDir := args[0] - log.Printf("This is records %s\n", version) + { + interactive := "" + if util.Interactive() { + interactive = ", running with interactive features" + } + log.Printf("This is records %s%s", version, interactive) + } + log.Println("https://git.baxters.nz/jeremy/records") musicindex.Init(mediaDir, *regenerate)