mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Remove separate dump log, use central log facility.
This commit is contained in:
@@ -63,9 +63,6 @@ partial class Dump
|
||||
|
||||
if(runOutSectors.Count == 0) return;
|
||||
|
||||
_dumpLog.WriteLine(string.Format(Localization.Core._0_sectors_at_the_end_of_the_disc_are_unreadable,
|
||||
runOutSectors.Count));
|
||||
|
||||
UpdateStatus?.Invoke(string.Format(Localization.Core._0_sectors_at_the_end_of_the_disc_are_unreadable,
|
||||
runOutSectors.Count));
|
||||
|
||||
@@ -75,7 +72,7 @@ partial class Dump
|
||||
|
||||
if(track is null) continue;
|
||||
|
||||
var sector = new byte[2352];
|
||||
byte[] sector = new byte[2352];
|
||||
|
||||
switch(track.Type)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user