* DiscImageChef.Devices/Enums.cs:

* DiscImageChef/Commands/DeviceInfo.cs:
	* DiscImageChef.Devices/Device/ScsiCommands.cs:
	  Added Plextor vendor commands.

	* DiscImageChef/Plugins.cs:
	* DiscImageChef/Commands/Analyze.cs:
	* DiscImageChef/Commands/Compare.cs:
	* DiscImageChef/Commands/CreateSidecar.cs:
	  Do not call system console directly.
This commit is contained in:
2016-01-11 19:24:17 +00:00
parent 62768b3e6b
commit c98d64e544
9 changed files with 710 additions and 7 deletions

View File

@@ -42,6 +42,7 @@ using System.Reflection;
using DiscImageChef.ImagePlugins;
using DiscImageChef.PartPlugins;
using DiscImageChef.Plugins;
using DiscImageChef.Console;
namespace DiscImageChef
{
@@ -76,7 +77,7 @@ namespace DiscImageChef
}
catch (Exception exception)
{
System.Console.Error.WriteLine(exception);
DicConsole.ErrorWriteLine("Exception {0}", exception);
}
}
@@ -94,7 +95,7 @@ namespace DiscImageChef
}
catch (Exception exception)
{
System.Console.Error.WriteLine(exception);
DicConsole.ErrorWriteLine("Exception {0}", exception);
}
}
@@ -112,7 +113,7 @@ namespace DiscImageChef
}
catch (Exception exception)
{
System.Console.Error.WriteLine(exception);
DicConsole.ErrorWriteLine("Exception {0}", exception);
}
}
}