From 260877f60db68f4442d2b4956a583135c0eea85b Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 25 Jun 2020 01:25:28 -0700 Subject: [PATCH] Enable file/line-level verbose debugging by providing enableDebugFeatures option. #20 --- main.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main.go b/main.go index 3b03bef79..be63320d3 100644 --- a/main.go +++ b/main.go @@ -4,6 +4,7 @@ import ( "flag" "fmt" + "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus" "github.com/gabek/owncast/config" @@ -26,8 +27,14 @@ func main() { log.Println(getVersion()) configFile := flag.String("configFile", "config.yaml", "Config File full path. Defaults to current folder") + enableDebugOptions := flag.Bool("enableDebugFeatures", false, "Enable additional debugging options.") + flag.Parse() + if *enableDebugOptions { + logrus.SetReportCaller(true) + } + if err := config.Load(*configFile); err != nil { panic(err) }