Robo M.
Robo M.

Reputation: 23

Don´t see error messages when build project

My problem is that when I start the build, or rebuild do not show me the messages in the output window or in the error window. I tried LogError, LogWarnings and LogMessage.

 public override bool Execute()
    {
        Log.LogMessage(MessageImportance.High, "*****************");
        Log.LogWarning("*****************");
        Log.LogError("*****************");

        try
        {
            this.Load(this.Input, this.Output);
            this.Parse(this.ParentElement, this.Element);
        }
        catch (Exception ex)
        {
            base.Log.LogError(ex.Message);
            return false;
        }

        return true;
    }

I also tried to set up different statements in the Build and Run (normal, detailed ...). I use Visual Studio 2013

Upvotes: 2

Views: 76

Answers (1)

amit dayama
amit dayama

Reputation: 3326

go to tools>> Options

under debugging>> output window

make sure you have following settings:

enter image description here

NOTE: This settings i have in VS2010. in 2013 there would be similar settings.

Upvotes: 1

Related Questions