Removed spurious debug message.

This commit is contained in:
2017-11-26 16:28:22 +00:00
parent 5fbf06c360
commit afd9e9a6fe
2 changed files with 47 additions and 1 deletions

View File

@@ -203,7 +203,6 @@ namespace DiscImageChef.Filesystems
if(sbLocation <= partition.End)
{
sector = imagePlugin.ReadSector(sbLocation);
System.Console.WriteLine("Searching for superblock on sector {0}", sbLocation);
FossilSuperBlock fsb = BigEndianMarshal.ByteArrayToStructureBigEndian<FossilSuperBlock>(sector);
DicConsole.DebugWriteLine("Fossil plugin", "magic 0x{0:X8} (expected 0x{1:X8})", fsb.magic, Fossil_SbMagic);