• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

C#.NET Logging Class

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    C#.NET Logging Class

    Have recently started doing some C# and am looking for an .NET open source logging class/framework, nothing too complex.

    Log4Net is huge and bloated, others have fees.

    Any suggestions, simple, free and reliable are the keywords.

    Thanks
    Never has a man been heard to say on his death bed that he wishes he'd spent more time in the office.

    #2
    Originally posted by Scrag Meister View Post
    Have recently started doing some C# and am looking for an .NET open source logging class/framework, nothing too complex.

    Log4Net is huge and bloated, others have fees.

    Any suggestions, simple, free and reliable are the keywords.

    Thanks
    N Log should be easier for you.

    Code:
    private static Logger logger = LogManager.GetCurrentClassLogger();
     
      public void MyMethod1()
      {
        logger.Trace("Sample trace message");
        logger.Debug("Sample debug message");
        logger.Info("Sample informational message");
        logger.Warn("Sample warning message");
        logger.Error("Sample error message");
        logger.Fatal("Sample fatal error message");
    }
    The Tutorial is short and to the point.
    merely at clientco for the entertainment

    Comment


      #3
      Originally posted by Scrag Meister View Post
      Have recently started doing some C# and am looking for an .NET open source logging class/framework, nothing too complex.

      Log4Net is huge and bloated, others have fees.

      Any suggestions, simple, free and reliable are the keywords.

      Thanks
      never heard anyone say that about Log4Net, I use it and it's pretty straight forward. Heard a lot of good things about NLog too though, not used it yet myself.

      Comment


        #4
        Use Elmah for .net. You can also use the Nuget system to install it in your site.

        Comment

        Working...
        X