summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/nscsi_hd.cpp
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2018-09-18 11:42:41 +0800
committer Patrick Mackinlay <pmackinlay@hotmail.com>2018-09-18 11:42:41 +0800
commitef5fe3c95e5f37926fd15c1161e5ada8dfa48aaf (patch)
treeeb71cd5b4e6d8bdcb26bf90ae976e934feeff5ad /src/devices/machine/nscsi_hd.cpp
parente541a8acbbf77866d2ce5531999e21c62fae5412 (diff)
nscsi_hd: minor logging improvement (nw)
Diffstat (limited to 'src/devices/machine/nscsi_hd.cpp')
-rw-r--r--src/devices/machine/nscsi_hd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/nscsi_hd.cpp b/src/devices/machine/nscsi_hd.cpp
index 2dc3b567898..15824d1679d 100644
--- a/src/devices/machine/nscsi_hd.cpp
+++ b/src/devices/machine/nscsi_hd.cpp
@@ -338,7 +338,7 @@ void nscsi_harddisk_device::scsi_command()
}
case SC_START_STOP_UNIT:
- LOG("command START STOP UNIT\n");
+ LOG("command %s UNIT\n", (scsi_cmdbuf[4] & 0x1) ? "START" : "STOP");
scsi_status_complete(SS_GOOD);
break;