aboutsummaryrefslogtreecommitdiffstats
path: root/util/flashrom_tester/src/main.rs
diff options
context:
space:
mode:
authorEvan Benn <evanbenn@chromium.org>2023-01-10 16:53:28 +1100
committerEdward O'Callaghan <quasisec@chromium.org>2023-01-31 01:56:31 +0000
commiteab04615ee2949c7afdef44fd6c419cc6f00b1bc (patch)
treef86ac37353b8ff475d916dc3b0c878a110322aec /util/flashrom_tester/src/main.rs
parent06bcc26b1da37e979e14a974274724eeb9622185 (diff)
downloadflashrom-eab04615ee2949c7afdef44fd6c419cc6f00b1bc.tar.gz
flashrom-eab04615ee2949c7afdef44fd6c419cc6f00b1bc.tar.bz2
flashrom-eab04615ee2949c7afdef44fd6c419cc6f00b1bc.zip
flashrom_tester: Remove --output log redirect option
Always print logs to stdout. User can redirect logs in the normal way if they wish. BUG=b:194245688 BRANCH=None TEST=clippy, unit Change-Id: I5eab8169644a16ba31b203e8607853c459f92978 Signed-off-by: Evan Benn <evanbenn@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/71773 Reviewed-by: Nikolai Artemiev <nartemiev@google.com> Reviewed-by: Peter Marheine <pmarheine@chromium.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/flashrom_tester/src/main.rs')
-rw-r--r--util/flashrom_tester/src/main.rs13
1 files changed, 1 insertions, 12 deletions
diff --git a/util/flashrom_tester/src/main.rs b/util/flashrom_tester/src/main.rs
index 44429ba8..b8a2581a 100644
--- a/util/flashrom_tester/src/main.rs
+++ b/util/flashrom_tester/src/main.rs
@@ -41,7 +41,6 @@ mod logger;
use clap::{App, Arg};
use flashrom::{FlashChip, Flashrom, FlashromCmd, FlashromLib};
use flashrom_tester::{tester, tests};
-use std::path::PathBuf;
use std::sync::atomic::AtomicBool;
pub mod built_info {
@@ -92,13 +91,6 @@ fn main() {
.help("Print the layout file's contents before running tests"),
)
.arg(
- Arg::with_name("log-file")
- .short("o")
- .long("log-file")
- .takes_value(true)
- .help("Write logs to a file rather than stdout"),
- )
- .arg(
Arg::with_name("log_debug")
.short("d")
.long("debug")
@@ -121,10 +113,7 @@ fn main() {
)
.get_matches();
- logger::init(
- matches.value_of_os("log-file").map(PathBuf::from),
- matches.is_present("log_debug"),
- );
+ logger::init(matches.is_present("log_debug"));
debug!("Args parsed and logging initialized OK");
debug!("Collecting crossystem info");