diff --git a/src/conf/log.rs b/src/conf/log.rs index 3fa55531..8dd6b58e 100644 --- a/src/conf/log.rs +++ b/src/conf/log.rs @@ -89,9 +89,8 @@ impl Config for LogConf { "stdout" => io::stdout().into(), "stderr" => io::stderr().into(), output => OpenOptions::new() - .write(true) - .create(true) .append(true) + .create(true) .open(output) .unwrap_or_else(|e| panic!("failed to open {}: {}", output, &e)) .into(),