diff options
author | 2019-12-22 13:46:55 +1100 | |
---|---|---|
committer | 2019-12-22 13:46:55 +1100 | |
commit | 4c263c1737f793de7ff1d51c2bc698330c0fb6eb (patch) | |
tree | 86ef1ab4b6c651ae1dfbf5cd25a4cdc2465d4035 | |
parent | 3db0e1a3d10ab150b695153f95a6bb3898b54cb9 (diff) |
spg2xx_io.cpp: disable logging by default (nw)
-rw-r--r-- | src/devices/machine/spg2xx_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/spg2xx_io.cpp b/src/devices/machine/spg2xx_io.cpp index 26d7ad32797..857884ce7a9 100644 --- a/src/devices/machine/spg2xx_io.cpp +++ b/src/devices/machine/spg2xx_io.cpp @@ -29,7 +29,7 @@ DEFINE_DEVICE_TYPE(SPG28X_IO, spg28x_io_device, "spg28x_io", "SPG280-series Syst #define LOG_IO (LOG_IO_READS | LOG_IO_WRITES | LOG_IRQS | LOG_GPIO | LOG_UART | LOG_I2C | LOG_TIMERS | LOG_EXTINT | LOG_UNKNOWN_IO) #define LOG_ALL (LOG_IO | LOG_VLINES | LOG_SEGMENT | LOG_WATCHDOG | LOG_FIQ | LOG_SIO | LOG_EXT_MEM) -#define VERBOSE (LOG_UART) +#define VERBOSE (0) #include "logmacro.h" |