toradex / vscode-torizon-templates

VS Code Torizon Integrated Development Environment Templates
MIT License
14 stars 20 forks source link

Missing debug console log in Mono template #176

Closed rudhi31 closed 4 days ago

rudhi31 commented 6 months ago

On our Mono template application, there is this piece of code in Form1.cs file:

private void button1_Click(object sender, EventArgs e)
        {
            Console.WriteLine("Hello Torizon!");
            label1.Text = "YEAHHHH!";
        }

I was expecting to see "Hello Torizon" on the debug console window when I press the button. But that did not happen. This question was raised by a customer during a meeting. If it is not in the debug console, then where exactly is this printed?