ringchenhao commented on issue #263: URL: https://github.com/apache/logging-log4net/issues/263#issuecomment-3082620760
App.config : <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="log4net" type="System.Configuration.IgnoreSectionHandler"/> </configSections> <log4net> <root> <level value="DEBUG"/> <appender-ref ref="RollingFileAppender"/> </root> <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender"> <file value="./Log/Tool_"/> <rollingStyle value="Date"/> <datePattern value="yyyy-MM-dd".log""/> <staticLogFileName value="false"/> <appendToFile value="true"/> <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="[%date{yyyyMMdd HH:mm:ss.fff}] [%-5level] [%thread] - %message%newline"/> </layout> <Encoding value="utf-8"/> </appender> </log4net> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> </startup> </configuration> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@logging.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org