Add warning message to dotnet-monitor (#1819)
authorJohn Salem <josalem@microsoft.com>
Tue, 15 Dec 2020 18:31:06 +0000 (10:31 -0800)
committerGitHub <noreply@github.com>
Tue, 15 Dec 2020 18:31:06 +0000 (10:31 -0800)
src/Tools/dotnet-monitor/Program.cs

index 89647cafb60e526bc97d3543a815d4ef1b55203b..0c979fcdfdc5e184822d543f5787dcd296b146ee 100644 (file)
@@ -79,6 +79,8 @@ namespace Microsoft.Diagnostics.Tools.Monitor
 
         public static Task<int> Main(string[] args)
         {
+            // FUTURE: This log message should be removed when dotnet-monitor is no longer an experimental tool
+            Console.WriteLine("WARNING: dotnet-monitor is experimental and is not intended for production environments yet.");
             var parser = new CommandLineBuilder()
                             .AddCommand(CollectCommand())
                             .UseDefaults()