From c431659d05cfc3ce08505a349ad8197c9e60a5f2 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Tue, 29 Dec 2020 11:59:57 +0100 Subject: [PATCH] cleanup: remove debug output --- src/tape/drive/linux_tape.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tape/drive/linux_tape.rs b/src/tape/drive/linux_tape.rs index a35ec71d..dc961111 100644 --- a/src/tape/drive/linux_tape.rs +++ b/src/tape/drive/linux_tape.rs @@ -70,7 +70,6 @@ impl LinuxTapeDrive { let mut handle = LinuxTapeHandle::new(file); let drive_status = handle.get_drive_status()?; - println!("drive status: {:?}", drive_status); if !drive_status.tape_is_ready() { bail!("tape not ready (no tape loaded)"); @@ -90,7 +89,7 @@ impl LinuxTapeDrive { } } - // Only root can seth driver options, so we cannot + // Only root can set driver options, so we cannot // handle.set_default_options()?; Ok(handle)