Revert "Feature/output errorlog#301" (#314)

This commit is contained in:
DustInDark
2021-12-20 20:59:30 +09:00
committed by GitHub
parent df4dcf1efa
commit 1aebdca160
9 changed files with 15 additions and 168 deletions
+2 -3
View File
@@ -68,7 +68,6 @@ fn build_app<'a>() -> ArgMatches<'a> {
-t --thread-number=[NUMBER] 'Thread number (default: optimal number for performance)'
-s --statistics 'Prints statistics of event IDs'
-q --quiet 'Quiet mode. Do not display the launch banner'
-Q --quiet-errors 'Quiet errors mode. Do not display errors or save error logs'
--contributors 'Prints the list of contributors'";
App::new(&program)
.about("Hayabusa: Aiming to be the world's greatest Windows event log analysis tool!")
@@ -141,7 +140,7 @@ impl TargetEventTime {
Err(err) => {
AlertMessage::alert(
&mut std::io::stderr().lock(),
format!("start-timeline field: {}", err),
format!("starttimeline field: {}", err),
)
.ok();
None
@@ -158,7 +157,7 @@ impl TargetEventTime {
Err(err) => {
AlertMessage::alert(
&mut std::io::stderr().lock(),
format!("end-timeline field: {}", err),
format!("endtimeline field: {}", err),
)
.ok();
None