From 0c2f77305f38cd1b7e862ffcdaaee31a861cc637 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 11 Feb 2020 22:12:30 -0500 Subject: [PATCH] Eliminates dangling printf. --- Storage/Disk/Drive.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Storage/Disk/Drive.cpp b/Storage/Disk/Drive.cpp index 711bb2939..b79f87532 100644 --- a/Storage/Disk/Drive.cpp +++ b/Storage/Disk/Drive.cpp @@ -434,7 +434,6 @@ void Drive::set_disk_is_rotating(bool is_rotating) { if(observer_) { observer_->set_drive_motor_status(drive_name_, disk_is_rotating_); if(announce_motor_led_) { - printf("LED set: %s %d\n", drive_name_.c_str(), int(disk_is_rotating_)); observer_->set_led_status(drive_name_, disk_is_rotating_); } }