From: Andy Sterland Date: Mon, 27 Jan 2020 21:36:10 +0000 (-0800) Subject: Changing the output text to say 'dump' rather than 'minidump' to avoid confusion... X-Git-Tag: submit/tizen_5.5/20200504.045052~11^2^2~141 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f5601c54211de1b52593bc50c6fa2b4044c3373;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Changing the output text to say 'dump' rather than 'minidump' to avoid confusion with the minidump file format over in windows land. (#772) --- diff --git a/src/Tools/dotnet-dump/Dumper.cs b/src/Tools/dotnet-dump/Dumper.cs index 3f1c37d50..bde84a83d 100644 --- a/src/Tools/dotnet-dump/Dumper.cs +++ b/src/Tools/dotnet-dump/Dumper.cs @@ -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))