mirror of
https://github.com/aaru-dps/Aaru.CommonTypes.git
synced 2025-12-16 19:24:30 +00:00
Rename DicConsole to AaruConsole.
This commit is contained in:
@@ -68,7 +68,7 @@ namespace Aaru.CommonTypes
|
||||
}
|
||||
catch(Exception exception)
|
||||
{
|
||||
DicConsole.ErrorWriteLine("Exception {0}", exception);
|
||||
AaruConsole.ErrorWriteLine("Exception {0}", exception);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -916,7 +916,7 @@ namespace Aaru.CommonTypes.Structs.Devices.ATA
|
||||
|
||||
if(IdentifyDeviceResponse.Length != 512)
|
||||
{
|
||||
DicConsole.DebugWriteLine("ATA/ATAPI IDENTIFY decoder",
|
||||
AaruConsole.DebugWriteLine("ATA/ATAPI IDENTIFY decoder",
|
||||
"IDENTIFY response is different than 512 bytes, not decoding.");
|
||||
|
||||
return null;
|
||||
|
||||
@@ -222,7 +222,7 @@ namespace Aaru.CommonTypes.Structs.Devices.SCSI
|
||||
if(SCSIInquiryResponse.Length < 36 &&
|
||||
SCSIInquiryResponse.Length != 5)
|
||||
{
|
||||
DicConsole.DebugWriteLine("SCSI INQUIRY decoder",
|
||||
AaruConsole.DebugWriteLine("SCSI INQUIRY decoder",
|
||||
"INQUIRY response is {0} bytes, less than minimum of 36 bytes, decoded data can be incorrect, not decoding.",
|
||||
SCSIInquiryResponse.Length);
|
||||
|
||||
@@ -232,7 +232,7 @@ namespace Aaru.CommonTypes.Structs.Devices.SCSI
|
||||
if(SCSIInquiryResponse.Length < SCSIInquiryResponse[4] + 4 &&
|
||||
SCSIInquiryResponse.Length != SCSIInquiryResponse[4])
|
||||
{
|
||||
DicConsole.DebugWriteLine("SCSI INQUIRY decoder",
|
||||
AaruConsole.DebugWriteLine("SCSI INQUIRY decoder",
|
||||
"INQUIRY response length ({0} bytes) is different than specified in length field ({1} bytes), decoded data can be incorrect, not decoding.",
|
||||
SCSIInquiryResponse.Length, SCSIInquiryResponse[4] + 4);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user