Skip to content

Commit b94c684

Browse files
committed
fix(autoconfigure/linux): remove debug line
1 parent fd2e9df commit b94c684

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/autoconfigure/linux.rs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
use crate::actions::ActionDeclaration;
21
use crate::actions::chainload::ChainloadConfiguration;
2+
use crate::actions::ActionDeclaration;
33
use crate::config::RootConfiguration;
44
use crate::entries::EntryDeclaration;
5-
use crate::generators::GeneratorDeclaration;
65
use crate::generators::list::ListConfiguration;
6+
use crate::generators::GeneratorDeclaration;
77
use crate::utils;
88
use anyhow::{Context, Result};
9-
use log::info;
109
use std::collections::BTreeMap;
11-
use uefi::CString16;
1210
use uefi::fs::{FileSystem, Path, PathBuf};
13-
use uefi::proto::device_path::DevicePath;
1411
use uefi::proto::device_path::text::{AllowShortcuts, DisplayOnly};
12+
use uefi::proto::device_path::DevicePath;
13+
use uefi::CString16;
1514

1615
/// The name prefix of the Linux chainload action that will be used to boot Linux.
1716
const LINUX_CHAINLOAD_ACTION_PREFIX: &str = "linux-chainload-";
@@ -117,7 +116,6 @@ fn scan_directory(filesystem: &mut FileSystem, path: &str) -> Result<Vec<KernelP
117116
let mut initramfs_path = path_for_join.clone();
118117
initramfs_path.push(Path::new(&initramfs));
119118

120-
info!("initramfs path: {:?} ({})", initramfs_path, initramfs);
121119
// Check if the initramfs path exists, if it does, break out of the loop.
122120
if filesystem
123121
.try_exists(&initramfs_path)

0 commit comments

Comments
 (0)