Most voted "log4net" questions
The Apache log4net library is a tool to help log the programmer’s system log to a variety of output destinations. log4net is ported from log4j to Microsoft® .NET. The structure is similar in essence to the original log4j, taking advantage of the new features in Runtime. NET.
Learn more…5 questions
Sort by count of
-
8
votes1
answer347
viewsHow to create an html log with log4net
I have a project that already uses log4net, but I would like to show this log in HTML. I searched several sites and nobody implemented this solution. Does anyone have any idea how to do that?…
-
2
votes0
answers36
viewsUsing Nlog with Postgresql C#
I am working on an application, and have some log screens, and I want to add a log routine in the API of these records, type: do not add, update and error occurrences (if any). The database that is…
-
0
votes0
answers208
viewsLog4net C# - does not save to database
I am using log4Net as a Log framework for a Winforms APP. public class Logger { private ILog _logErro; private const string LogErro = "LoggerErro"; public Logger() { Configure(); } private void…
-
0
votes0
answers82
viewsHow to log a log through log4net when using the Task Scheduler to start a console application?
I compiled a console application in c# that has log4net (which is already working normally when I run the app) and configured through Windows Task Scheduler to run the application console every day…
-
0
votes2
answers67
viewsHow to use Log4net Adonetappender only at Error level
I have a console application and use log4net to display the application logs, however I would like to save only the error logs in the database. I saw that you have the configuration of…