Add option to not store paths and serial numbers when dumping. Fixes #213

This commit is contained in:
2020-03-11 15:28:04 +00:00
parent 695fb9e90a
commit 8bf8f4fd78
17 changed files with 166 additions and 52 deletions

View File

@@ -158,7 +158,7 @@ namespace Aaru.Core.Devices.Scanning
UpdateStatus?.Invoke($"Reading {blocksToRead} sectors at a time.");
InitBlockMap?.Invoke(results.Blocks, blockSize, blocksToRead, SD_PROFILE);
var mhddLog = new MhddLog(mhddLogPath, dev, results.Blocks, blockSize, blocksToRead);
var mhddLog = new MhddLog(mhddLogPath, dev, results.Blocks, blockSize, blocksToRead, false);
var ibgLog = new IbgLog(ibgLogPath, SD_PROFILE);
start = DateTime.UtcNow;