summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorAlex Goodman <wagoodman@gmail.com>2019-11-22 17:33:13 -0500
committerAlex Goodman <wagoodman@gmail.com>2019-11-23 21:13:08 -0500
commit14706152a1172d28507c244f137d7df2998c056e (patch)
tree3bd1b85faf78e14d508914c92e989f7e9ea75e44 /cmd
parent119040e72c1eddff55ad0e908d8e1a96f6286b0b (diff)
added simple layout manager
Diffstat (limited to 'cmd')
-rw-r--r--cmd/root.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/root.go b/cmd/root.go
index 680632c..149ec05 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -141,6 +141,10 @@ func initLogging() {
log.SetLevel(level)
log.Debug("Starting Dive...")
+ log.Debugf("config filepath: %s", viper.ConfigFileUsed())
+ for k, v := range viper.AllSettings() {
+ log.Debug("config value: ", k, " : ", v)
+ }
}
// getCfgFile checks for config file in paths from xdg specs