Changing the output text to say 'dump' rather than 'minidump' to avoid confusion...
authorAndy Sterland <andster@microsoft.com>
Mon, 27 Jan 2020 21:36:10 +0000 (13:36 -0800)
committerMike McLaughlin <mikem@microsoft.com>
Mon, 27 Jan 2020 21:36:10 +0000 (13:36 -0800)
src/Tools/dotnet-dump/Dumper.cs

index 3f1c37d50eb06a5034af08dbf171a9593414c379..bde84a83d17948eb42d83543fb40bfd98fa96dfb 100644 (file)
@@ -49,7 +49,7 @@ namespace Microsoft.Diagnostics.Tools.Dump
                 output = Path.GetFullPath(output);
 
                 // Display the type of dump and dump path
-                string dumpTypeMessage = type == DumpTypeOption.Mini ? "minidump" : "minidump with heap";
+                string dumpTypeMessage = type == DumpTypeOption.Mini ? "dump" : "dump with heap";
                 console.Out.WriteLine($"Writing {dumpTypeMessage} to {output}");
 
                 if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))