mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Rename Aaru.Console to Aaru.Logging
This commit is contained in:
@@ -55,7 +55,7 @@ public sealed partial class Symbian
|
||||
for(int i = 0; i < conditionLevel; i++) tabulationChars[i] = '\t';
|
||||
string tabulation = new(tabulationChars);
|
||||
|
||||
AaruConsole.Debug(MODULE_NAME,
|
||||
AaruLogging.Debug(MODULE_NAME,
|
||||
"Seeking to {0} for parsing of file {1} of {2}",
|
||||
offset,
|
||||
currentFile,
|
||||
@@ -64,7 +64,7 @@ public sealed partial class Symbian
|
||||
br.BaseStream.Seek(offset, SeekOrigin.Begin);
|
||||
var recordType = (FileRecordType)br.ReadUInt32();
|
||||
|
||||
AaruConsole.Debug(MODULE_NAME, "Found record with type {0}", recordType);
|
||||
AaruLogging.Debug(MODULE_NAME, "Found record with type {0}", recordType);
|
||||
|
||||
br.BaseStream.Seek(-sizeof(FileRecordType), SeekOrigin.Current);
|
||||
|
||||
@@ -118,7 +118,7 @@ public sealed partial class Symbian
|
||||
decodedFileRecord.mime = _encoding.GetString(buffer);
|
||||
}
|
||||
|
||||
AaruConsole.Debug(MODULE_NAME,
|
||||
AaruLogging.Debug(MODULE_NAME,
|
||||
"Found file for \"{0}\" with length {1} at {2}",
|
||||
decodedFileRecord.destinationName,
|
||||
decodedFileRecord.length,
|
||||
|
||||
Reference in New Issue
Block a user