我在本地运行VS2013 Azure应用程序,并向Debug窗口输出一条消息,如下所示:
Debug.WriteLine(logString);
这适用于某些时候,有时我会收到一条消息:
Not running in a hosted service or the Development Fabric.
Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics,
根据我对SO的其他答案的理解,当我使用Debug.Write()时,与Diagnostics存在某种冲突。
在我测试的时候,还有另一种方法可以将消息写入输出窗口吗?我知道有一个Console.Write,但这不起作用,因为我没有控制台。
答案 0 :(得分:0)
使用System.Diagnostics,您可以使用跟踪对象:
Trace.Write("YOUR MESSGE");
这是一个参考......