diff --git a/src/devices/machine/nscsi_bus.cpp b/src/devices/machine/nscsi_bus.cpp index 1e348044572..5308d783313 100644 --- a/src/devices/machine/nscsi_bus.cpp +++ b/src/devices/machine/nscsi_bus.cpp @@ -9,7 +9,7 @@ #define LOG_DATA (1U << 3) //#define VERBOSE (LOG_GENERAL | LOG_STATE | LOG_CONTROL | LOG_DATA) -#define VERBOSE (LOG_GENERAL) +#define VERBOSE 0 #include "logmacro.h" diff --git a/src/devices/machine/nscsi_cd.cpp b/src/devices/machine/nscsi_cd.cpp index 32989426b68..5815ccdfa3e 100644 --- a/src/devices/machine/nscsi_cd.cpp +++ b/src/devices/machine/nscsi_cd.cpp @@ -3,7 +3,7 @@ #include "emu.h" #include "machine/nscsi_cd.h" -#define VERBOSE 1 +#define VERBOSE 0 #include "logmacro.h" DEFINE_DEVICE_TYPE(NSCSI_CDROM, nscsi_cdrom_device, "scsi_cdrom", "SCSI CD-ROM") diff --git a/src/devices/machine/nscsi_hd.cpp b/src/devices/machine/nscsi_hd.cpp index 15824d1679d..c83a2c17ef9 100644 --- a/src/devices/machine/nscsi_hd.cpp +++ b/src/devices/machine/nscsi_hd.cpp @@ -8,7 +8,7 @@ #define LOG_COMMAND (1U << 1) #define LOG_DATA (1U << 2) -#define VERBOSE (LOG_GENERAL) +#define VERBOSE 0 #include "logmacro.h"