Home > Software design >  log4net troubleshooting with Database in C# ConsoleApp
log4net troubleshooting with Database in C# ConsoleApp

Time:12-24

I am new to logging in .Net and was trying to learn log4net as a logging tool. I am running into a problem which is I have created a log4net config file and trying to add values of logs into SSMS but values are not populating as expected. Here is my log4net config file

<?xml version="1.0" encoding="utf-8" ?>

<log4net>
    <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
        <layout type="log4net.Layout.PatternLayout">
            <conversionPattern value="           
  • Related