Git Product home page Git Product logo

Comments (3)

xavierpena avatar xavierpena commented on July 4, 2024

Solution given by @pfx via StackOverflow:

Assuming the configuration gets hooked up; use the log4net.Appender.FileAppender instead of the log4net.Appender.DebugAppender; the DebugAppender doesn't write to file.

This means that the log4net.config needs to change like so:

  <?xml version="1.0" encoding="utf-8" ?>
  <log4net>
	<appender name="FileAppender" type="log4net.Appender.FileAppender" >
	  <file value="C:\path\to\your\logfile.log" />
	  <layout type="log4net.Layout.PatternLayout">
		<conversionPattern value="%date [%thread] %-5level %logger - %message%newline" />
	  </layout>
	</appender>
	<root>
	  <level value="ALL"/>
	  <appender-ref ref="FileAppender" />
	</root>
  </log4net>

And also, loggerFactory.AddLog4Net(); doesn't seem to automatically go find log4net.config (as it might be understood from the project's documentation). Instead, you must specify loggerFactory.AddLog4Net("log4net.config");.

from microsoft.extensions.logging.log4net.aspnetcore.

huorswords avatar huorswords commented on July 4, 2024

Hello Xavier,

Thank you by raising this issue.

I'm happy that you already found a solution via StackOverflow to your missing log file (because seems that you are not using the proper appender).

Following with your last comment, I will check your issue and get back to you as soon as possible.

Regards

from microsoft.extensions.logging.log4net.aspnetcore.

richagain avatar richagain commented on July 4, 2024

Hi, when publish to Production, how to get the logging work and save into text files?

I could get the logging work and saving the file in Development environment.

from microsoft.extensions.logging.log4net.aspnetcore.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.