small format fix
This commit is contained in:
@@ -88,6 +88,7 @@ impl App {
|
||||
}
|
||||
if *STATISTICS_FLAG {
|
||||
println!("Generating Event ID Statistics");
|
||||
println!("");
|
||||
}
|
||||
if let Some(filepath) = configs::CONFIG.read().unwrap().args.value_of("filepath") {
|
||||
if !filepath.ends_with(".evtx") {
|
||||
|
||||
@@ -38,10 +38,10 @@ impl Timeline {
|
||||
let mut sammsges: Vec<String> = Vec::new();
|
||||
sammsges.push("---------------------------------------".to_string());
|
||||
sammsges.push(format!("Evtx File Path: {}", self.stats.filepath));
|
||||
sammsges.push(format!("Total Event Records : {}\n", self.stats.total));
|
||||
sammsges.push(format!("Total Event Records: {}\n", self.stats.total));
|
||||
sammsges.push(format!("First Timestamp: {}", self.stats.start_time));
|
||||
sammsges.push(format!("Last Timestamp: {}\n", self.stats.end_time));
|
||||
sammsges.push("count(Percent)\tID\tEvent\t\tTimeline".to_string());
|
||||
sammsges.push("Count (Percent)\tID\tEvent\t\tTimeline".to_string());
|
||||
sammsges.push("--------------- ------- --------------- -------".to_string());
|
||||
|
||||
// 集計件数でソート
|
||||
|
||||
Reference in New Issue
Block a user