From 19c17c87ebfea64f4416bd6d48a09a37bf52ec18 Mon Sep 17 00:00:00 2001 From: Sven Schnelle Date: Thu, 11 Oct 2018 13:03:53 +0200 Subject: [PATCH] NSCSI: disable debug The default debug settings are filling up error.log pretty quick when booting SCSI machines like hp9k_3xx. Disable debug in the default settings, it can still be enabled if some dev/user wants to debug NSCSI. --- src/devices/machine/nscsi_bus.cpp | 2 +- src/devices/machine/nscsi_cd.cpp | 2 +- src/devices/machine/nscsi_hd.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"