aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xdsconfig
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-10-16 18:17:44 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-10-16 18:17:44 +0200
commit77ab312b87324090ec6cb619d11f792b53fdddbd (patch)
tree194cb312f831eabf9a5f1cd93fa7f5c13274fa50 /lib/xdsconfig
parent4695555e178bcabe54c5bf82117c9c4cef5440b5 (diff)
Add sanity check when adding a new pathmap project/folder
Diffstat (limited to 'lib/xdsconfig')
-rw-r--r--lib/xdsconfig/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/xdsconfig/config.go b/lib/xdsconfig/config.go
index 9279a67..9e44070 100644
--- a/lib/xdsconfig/config.go
+++ b/lib/xdsconfig/config.go
@@ -78,6 +78,8 @@ func Init(ctx *cli.Context, log *logrus.Logger) (*Config, error) {
Log: log,
}
+ c.Log.Infoln("Agent UUID: ", uuid)
+
// config file settings overwrite default config
err = readGlobalConfig(&c, c.Options.ConfigFile)
if err != nil {
@@ -113,7 +115,6 @@ func Init(ctx *cli.Context, log *logrus.Logger) (*Config, error) {
}
}
- c.Log.Infoln("Agent UUID: ", uuid)
c.Log.Infoln("Logs file: ", c.Options.LogFile)
c.Log.Infoln("Logs directory: ", c.FileConf.LogsDir)