Remove all debug console writes

This commit is contained in:
Matt Nadareski
2018-06-10 16:16:47 -07:00
parent 400ef38c60
commit 6e6b716c18
2 changed files with 2 additions and 8 deletions

View File

@@ -144,7 +144,6 @@ namespace DICUI
Process process = new Process();
process.StartInfo.FileName = dicPath;
process.StartInfo.Arguments = discType + " " + driveLetter + " \"" + outputDirectory + "\\" + outputFileName + "\" " + driveSpeed + " " + processArguments;
Console.WriteLine(process.StartInfo.Arguments);
process.Start();
process.WaitForExit();
});
@@ -205,10 +204,10 @@ namespace DICUI
case DiscType.NONE:
lbl_Status.Content = "Please select a valid disc type";
break;
case DiscType.GDROM:
case DiscType.GameCubeGameDisc:
case DiscType.GDROM:
lbl_Status.Content = string.Format("{0} discs are partially supported by DIC", Utilities.DiscTypeToString(tuple.Item3));
break;
case DiscType.GameCubeGameDisc:
case DiscType.HDDVD:
case DiscType.UMD:
lbl_Status.Content = string.Format("{0} discs are not currently supported by DIC", Utilities.DiscTypeToString(tuple.Item3));

View File

@@ -422,7 +422,6 @@ namespace DICUI
case DiscType.GDROM:
return "gd"; // TODO: "swap"?
case DiscType.HDDVD:
Console.WriteLine("HD-DVD dumping is not supported by DIC");
return null;
case DiscType.BD25:
return "bd";
@@ -433,7 +432,6 @@ namespace DICUI
case DiscType.GameCubeGameDisc:
return "dvd";
case DiscType.UMD:
Console.WriteLine("UMD dumping is not supported by DIC");
return null;
// Non-optical
@@ -457,7 +455,6 @@ namespace DICUI
List<DiscType?> validTypes = GetValidDiscTypes(sys);
if (!validTypes.Contains(type))
{
Console.WriteLine("Invalid DiscType '{0}' for System '{1}'", type.ToString(), KnownSystemToString(sys));
return null;
}
@@ -494,7 +491,6 @@ namespace DICUI
parameters.Add("/c2 20");
break;
case DiscType.HDDVD:
Console.WriteLine("HD-DVD dumping is not supported by DIC");
break;
case DiscType.BD25:
// Currently no defaults set
@@ -508,7 +504,6 @@ namespace DICUI
parameters.Add("/raw");
break;
case DiscType.UMD:
Console.WriteLine("UMD dumping is not supported by DIC");
break;
// Non-optical