Skip to content

Commit

Permalink
fixed logging output
Browse files Browse the repository at this point in the history
  • Loading branch information
dweidenfeld committed May 9, 2017
1 parent 2524a8a commit 676aecb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.go
Expand Up @@ -85,15 +85,17 @@ func main() {
Log.SetLevel(logLevel)

// debug all given parameters
Log.Debugf("log-level : %v", logLevel)
Log.Debugf("verbosity : %v", logLevel)
Log.Debugf("config : %v", *argConfigPath)
Log.Debugf("temp : %v", *argTempPath)
Log.Debugf("chunk-size : %v", *argChunkSize)
Log.Debugf("refresh-interval : %v", *argRefreshInterval)
Log.Debugf("clear-chunk-interval : %v", *argClearInterval)
Log.Debugf("clear-chunk-age : %v", *argClearChunkAge)
Log.Debugf("fuse-options : %v", *argMountOptions)
Log.Debugf("UID : %v", uid)
Log.Debugf("GID : %v", gid)
// version missing here

// create all directories
if err := os.MkdirAll(*argConfigPath, 0766); nil != err {
Expand Down

0 comments on commit 676aecb

Please sign in to comment.