Start the logger earlier so all messages go there - fixes #486

s3-about
Nick Craig-Wood 2016-06-03 22:08:27 +01:00
parent a21cc161de
commit 9bbcdeefd0
1 changed files with 6 additions and 2 deletions

View File

@ -320,7 +320,6 @@ func ParseFlags() {
pflag.Usage = syntaxError
pflag.Parse()
runtime.GOMAXPROCS(runtime.NumCPU())
fs.LoadConfig()
}
// ParseCommand parses the command from the command line
@ -414,7 +413,12 @@ func main() {
log.SetOutput(f)
redirectStderr(f)
}
fs.Debug("rclone", "Starting with parameters %+v", os.Args)
// Load the rest of the config now we have started the logger
fs.LoadConfig()
// Write the args for debug purposes
fs.Debug("rclone", "Starting with parameters %q", os.Args)
// Setup CPU profiling if desired
if *cpuProfile != "" {