diff --git a/Filters.cs b/Filters.cs index 925ae33..3b07103 100644 --- a/Filters.cs +++ b/Filters.cs @@ -68,7 +68,7 @@ namespace Aaru.CommonTypes } catch(Exception exception) { - DicConsole.ErrorWriteLine("Exception {0}", exception); + AaruConsole.ErrorWriteLine("Exception {0}", exception); } } diff --git a/Structs/Devices/ATA/Identify.cs b/Structs/Devices/ATA/Identify.cs index 8b319b9..e52497f 100644 --- a/Structs/Devices/ATA/Identify.cs +++ b/Structs/Devices/ATA/Identify.cs @@ -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; diff --git a/Structs/Devices/SCSI/Inquiry.cs b/Structs/Devices/SCSI/Inquiry.cs index 3267f88..26401b3 100644 --- a/Structs/Devices/SCSI/Inquiry.cs +++ b/Structs/Devices/SCSI/Inquiry.cs @@ -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);