From a738dc073915637e03e558e4d7b3db7079428fa5 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 30 Mar 2023 22:22:12 -0400 Subject: z80scc: Make receive error logging conditional --- src/devices/machine/z80scc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/z80scc.cpp b/src/devices/machine/z80scc.cpp index 48415c9a683..8a6efee3fae 100644 --- a/src/devices/machine/z80scc.cpp +++ b/src/devices/machine/z80scc.cpp @@ -2584,7 +2584,7 @@ void z80scc_channel::receive_data(uint8_t data) // store received character but do not step the fifo m_rx_data_fifo[m_rx_fifo_wp] = data; - logerror("Receive_data() Error %02x\n", m_rx_error_fifo[m_rx_fifo_wp] & (RR1_CRC_FRAMING_ERROR | RR1_RX_OVERRUN_ERROR | RR1_PARITY_ERROR)); + LOGRCV("Receive_data() Error %02x\n", m_rx_error_fifo[m_rx_fifo_wp] & (RR1_CRC_FRAMING_ERROR | RR1_RX_OVERRUN_ERROR | RR1_PARITY_ERROR)); } else { -- cgit v1.2.3