summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-05-30 19:00:40 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-05-30 19:00:40 -0400
commit94b2eb8f2773a6226fc7d4ff2300e1e0418ecb98 (patch)
treea2a43d227d9fb031dc0ab75c68b4c733ec1fabe7
parent241aceea5a91bd7b7e751c151f80c75dfa286a4b (diff)
z80scc: Reduce gratuitous logging (nw)
-rw-r--r--src/devices/machine/z80scc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/z80scc.cpp b/src/devices/machine/z80scc.cpp
index b44be5c5873..3bf2905d02b 100644
--- a/src/devices/machine/z80scc.cpp
+++ b/src/devices/machine/z80scc.cpp
@@ -2095,7 +2095,7 @@ void z80scc_channel::do_sccreg_wr4(uint8_t data)
LOG("%s(%02x) Setting up asynchronous frame format and clock\n", FUNCNAME, data);
if (data == m_wr4)
{
- logerror("- suppressing reinit of Tx as write to wr4 is identical to previous value\n");
+ LOG("- suppressing reinit of Tx as write to wr4 is identical to previous value\n");
}
else
{
@@ -2119,7 +2119,7 @@ void z80scc_channel::do_sccreg_wr5(uint8_t data)
LOG("%s(%02x) Setting up the transmitter\n", FUNCNAME, data);
if (data == m_wr5)
{
- logerror("- suppressing reinit of Tx as write to wr5 is identical to previous value\n");
+ LOG("- suppressing reinit of Tx as write to wr5 is identical to previous value\n");
}
else
{