[Mono-bugs] [Bug 577238] New: Console.Writeline() fails when debugging, succeeds when running remotely.

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Thu Feb 4 18:31:29 EST 2010


http://bugzilla.novell.com/show_bug.cgi?id=577238

http://bugzilla.novell.com/show_bug.cgi?id=577238#c0


           Summary: Console.Writeline() fails when debugging, succeeds
                    when running remotely.
    Classification: Mono
           Product: Mono: Tools
           Version: unspecified
          Platform: x86-64
        OS/Version: SLES 11
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: Visual Studio Integration
        AssignedTo: jpobst at novell.com
        ReportedBy: mchristensen at novell.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: Component Test
           Blocker: ---


Description of Problem:

A simple ASP.NET app made from a template in Visual Studio.

If I run this app remotely, the Console.Writeline() output is sent to the
console or log viewer correctly.  However, nothing shows up in either place
when debugging remotely.  Seems the console output is lost somewhere when
debugging.

Default.aspx.cs:
================

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Runtime.InteropServices;

namespace WebApplication1
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            String E = "Howdy";
            Console.WriteLine(E);
        }
    }
}

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list