Rename DicConsole to AaruConsole.

This commit is contained in:
2020-02-27 23:48:32 +00:00
parent 79076c70f9
commit 3ff4c203af
3 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ namespace Aaru.CommonTypes
}
catch(Exception exception)
{
DicConsole.ErrorWriteLine("Exception {0}", exception);
AaruConsole.ErrorWriteLine("Exception {0}", exception);
}
}

View File

@@ -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;

View File

@@ -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);