utils: Get rid of spurious print statement left behind.

The print was used for debugging, get ris of it.

Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
This commit is contained in:
Archana Shinde 2023-04-13 23:26:05 -07:00
parent 9a94f1f149
commit f2ebdd81c2

View File

@ -110,7 +110,6 @@ pub fn get_distro_details(os_release: &str, os_release_clr: &str) -> Result<(Str
pub fn get_generic_cpu_details(cpu_info_file: &str) -> Result<(String, String)> {
let cpu_info = get_single_cpu_info(cpu_info_file, "\n\n")?;
let lines = cpu_info.lines();
println!("Single cpu info: {}", cpu_info);
let mut vendor = String::new();
let mut model = String::new();