From 535747e3f2d8d3900b912cecc9aaf4c1a8406a15 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 13 Jun 2019 13:35:03 -0400 Subject: [PATCH] Restores single-line logging format. --- Components/DiskII/IWM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/DiskII/IWM.cpp b/Components/DiskII/IWM.cpp index 3487cccf9..0de1f4354 100644 --- a/Components/DiskII/IWM.cpp +++ b/Components/DiskII/IWM.cpp @@ -81,7 +81,7 @@ uint8_t IWM::read(int address) { (/ENBL1 is low when the first drive's motor is on; /ENBL2 is low when the second drive's motor is on. If the 1-second timer is enabled, motors remain on for one second after being programmatically disabled.) */ - LOG("Reading status (including [" << active_drive_ << "][" << ((state_ & CA2) ? '2' : '-') << ((state_ & CA1) ? '1' : '-') << ((state_ & CA0) ? '0' : '-') << ((state_ & SEL) ? 'S' : '-') << "]"); + LOGNBR("Reading status (including [" << active_drive_ << "][" << ((state_ & CA2) ? '2' : '-') << ((state_ & CA1) ? '1' : '-') << ((state_ & CA0) ? '0' : '-') << ((state_ & SEL) ? 'S' : '-') << "] "); // Determine the SENSE input. uint8_t sense = 0x00;