• 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!
Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "C#.NET Logging Class"

Collapse

  • GlasgowDev
    replied
    Use Elmah for .net. You can also use the Nuget system to install it in your site.

    Leave a comment:


  • jmo21
    replied
    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.

    Leave a comment:


  • eek
    replied
    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.

    Leave a comment:


  • Scrag Meister
    started a topic C#.NET Logging Class

    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
Working...
X