Menu

#12 PartCover.exe writes Messages to Console.Error

closed-fixed
5
2010-07-07
2010-04-02
Thomas
No

PartCover.exe should't write normal messages to Console.Error because external tools (like CC.NET) think the run has failed.
Instead it should write normal output to Console.
Please replace the functions in class ApplicationEntry with this:

class ApplicationEntry
{
...
private static void WriteListOfSkippedItems(Report report)
{
report.SkippedItems.ForEach(x =>
Console.WriteLine("Skipped item [{0}]{1}", x.AssemblyName, x.TypedefName));
}

static void connector_LogEntryReceived(object sender, LogEntryEventArgs e)
{
Console.WriteLine(e.Data.ToHumanString());
}

static void connector_StatusMessageReceived(object sender, StatusEventArgs e)
{
Console.WriteLine(e.Data);
}
}

Discussion

  • Thomas

    Thomas - 2010-05-04
    • assigned_to: nobody --> tmaierhofer
    • status: open --> pending
     
  • SourceForge Robot

    This Tracker item was closed automatically by the system. It was
    previously set to a Pending status, and the original submitter
    did not respond within 14 days (the time period specified by
    the administrator of this Tracker).

     
  • SourceForge Robot

    • status: pending --> closed
     
  • Shaun Wilde

    Shaun Wilde - 2010-06-26
    • assigned_to: tmaierhofer --> sawilde
     
  • Shaun Wilde

    Shaun Wilde - 2010-06-26
    • status: closed --> open-accepted
     
  • Shaun Wilde

    Shaun Wilde - 2010-06-26
    • status: open-accepted --> pending-fixed
     
  • Shaun Wilde

    Shaun Wilde - 2010-06-26

    part of r33 checkin

     
  • Shaun Wilde

    Shaun Wilde - 2010-07-07
    • status: pending-fixed --> closed-fixed
     

Log in to post a comment.