Trace information - where is it stored in local development mode

Hi, I created a cloud service and added a Trace.WriteLine in one of my Get methods as shown below

  public IEnumerable<string> Get()
        {
            Trace.WriteLine(message: "Tracing Test locally");
            return new string[] { "value1", "value2" };
        }

I ran the cloud service locally on my desktop, and I started a local browser and initiated the Get method and got a response back (["value1","value2"]).

Then I wanted to view the trace information. Where can I find the above trace message

I am running Visual Studio 2015 Enterprise.

September 4th, 2015 6:17pm

You should be able to see the Trace information in the Output window of Visual Studio.
Free Windows Admin Tool Kit Click here and download it now
September 4th, 2015 8:03pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics