The Apache log4net library is a tool to help the programmer output log statements to a variety of output targets. log4net is a port of the excellent Apache log4j™ framework to the Microsoft® .NET runtime. We have kept the framework similar in spirit to the original log4j while taking advantage of ...

learn more… | top users | synonyms

0
votes
0answers
8 views

log4net not logging in VB.NET Test project

I am using log4net in a VB.NET 3.5 2010 Test project. I have been racking my brains and searching all over for answers but I am unable to produce a log file. I am running from the IDE. In the ...
0
votes
2answers
23 views

log4net rolling file appender (by date) overwriting existing file

I've currently got a log4net rolling file appender, based on date that should be rolling over each day. It has been doing that for months without a problem - but in the last week it has begun ...
1
vote
2answers
22 views

Log4Net inside facade not recognising config

Trying to add logging to an application using Log4Net. It's possible I have wholly misunderstood what this framework is for and how it works, but what I'd like to do is have a custom facade class, ...
0
votes
0answers
11 views

BlockingCollection causing deadlock in Async log implementation

I'm attempting to add asyncronous logging to C# log4net archetecture. The class I've developed is below. I've configured it to have a bounded capacity of 1 just to test it. However I seem to be ...
1
vote
1answer
56 views

Unable to write to a Log File tried everything

Web.config <configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> </configSections> ...
0
votes
2answers
16 views

Change name of logfile a few times during runtime

Is it possible to change the name of a logfile for a fileappender while the application is running? It will be done a few times / day. I'll try to elaborate myself a bit more: my app writes firmware ...
0
votes
2answers
36 views

How Add custom properties in AppenderSkeleton log4net

I Create Custom Appender(with AppenderSkeleton) that Connect to the Web Service... in this Appender i need to send some custom properties(like Url , Browser ,User , ...) to the web Service... but when ...
2
votes
2answers
45 views

Why is log4net not recognized in configuration file?

I worte a test console application in C# using log4net: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using log4net; using ...
1
vote
1answer
42 views

Log4Net working locally but not on remote Azure DB

I locally develop an ASP.NET MVC application and use Log4Net to log message on the local database with the following connection string (log4net.config): <connectionType ...
0
votes
1answer
13 views

log4net rolling file apender across midnight

I'm tring to set the log names to this pattern: ApplicationName.Date.log This my config file code: <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender"> <file ...
2
votes
3answers
66 views

Log4Net Not Logging When Deployed

Using version 1.2.11. Logging works on my dev machine, but won't create the directory or log when deployed. I have tried giving full directory access to IUSR, Everyone, local users. I have also ...
0
votes
0answers
15 views

Can I just use only one rolling appender in config file but generate multiple log files in Log4Net?

I knew that I can use %property <file type="log4net.Util.PatternString" value="logs\\%property{LogName}" /> in config file to create dynamic log file. But may I know if the config file have ...
0
votes
1answer
23 views

Log4net dynamic separate log does not work?

I have on config file as follow: <configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> ...
0
votes
0answers
9 views

How to roll on date and have backup files with time

I'm currently using log4net and using the RollingFileAppender. The DatePattern allows me to roll on date. This creates a file for the whole day in a specific directory. <param name="DatePattern" ...
0
votes
0answers
16 views

C# Creating Event Log's on local machine. Contradictions

Good morning, I am trying to configure Log4Net to use the EventLogAppender. As part of the entire solution, a set of unit tests exist to ensure that all the appender's are logging the expected ...
0
votes
1answer
33 views

How manage log4net to log into specific Url or Web Service

I have Web App and I want send my logs (with Log4Net) (Error-Info-Warning) with query string into Specific url OR Send logs to the web service that I created it before?
0
votes
1answer
17 views

How to create custom level in log4net?

How to create a custom level in Log4Net like 'ERROR', 'WARN', 'INFO'. eg. I want to create a level 'General' and I want to use it as 'logger.General("This is general log")'.
0
votes
1answer
28 views

log4net watching function does not work if create appender in code?

I want to set a Rolling Appender dynamic in code rather than in config file. So I have a function that will return log4net.ILog <Assembly: ...
0
votes
0answers
27 views

How to use MEF2 to do import log4net ILog?

Note: I am a MEF newbie, and am starting off with MEF2. It is very hard to Google to learn about it, most search results bring back answers for neurology research. Most examples of constructing a ...
0
votes
1answer
36 views

Generate automatic logs when entering and exiting functions .net 2.0

I am using .net 2.0. I want to generate the logs when the methods are calling (before call and after call) in a particular class. Is it possible in Enterprise Library 2.0 or log4net? or Is there any ...
0
votes
1answer
17 views

Log4net database vs file log

I'm wondering what will work better performance wise and size wise. I'm using log4net for logging, and I'm considering either writing it to a file (with the possibility of creating new files every 10 ...
0
votes
2answers
18 views

Can I change/reduce the error level for a log in log4net?

I'm working with a third-party SDK that uses log4net. I don't want to completely exclude their items from the log; however, I don't want to constantly see these Error items in our logs either. ...
0
votes
0answers
16 views

Why are my domain assembly's log messages being dropped while the websites logs are being written

I'm using log4net to implement logging in an asp.net mvc4 web application. Log messages originating in my website project get written to the log just fine but log messages originating from the ...
1
vote
0answers
27 views

Upgrade Log4Net from 1.2.10.0 to 1.2.11.0 on .net Framework 4.0 security

I am currently upgrading Log4net from 1.2.10.0 to 1.2.11.0. Configuration is ok, everything is looking fine, it works for me also with Chainsaw, logs are created and I see actuall stuff logged. But ...
1
vote
1answer
37 views

Log4Net properties is overwriting for simultaneous requests

I am trying to write log file per user separately For this I am setting the property of file name as a current user id and configuring log4net like this log4net.GlobalContext.Properties["userid"] = ...
3
votes
1answer
47 views

Custom Log4Net appender not creating table or storing entries correctly

I am currently in the process of creating a prototype of a custom Log4Net appender, which is going to store information on all exceptions that occur within the project in an Azure table. The table is ...
1
vote
1answer
35 views

Logs in two different files log4Net

I wanted to write logs in two different files using log4net, one in the global log file while the other for particular user file, for this I set the param in appender like this <param name="File" ...
0
votes
1answer
37 views

Cannot get log4net to work for database

I cannot get log4net to work, and having installed Glimpse for log4net, I notivce the log4net tab is greyed out, so I guess I have not installed it properly, not sure where though. In my ...
1
vote
1answer
35 views

Log4Net - appending date to filename when rolling by size

I'd like to configure the log4net to append the name to the filenames when rolling by size. I've only played around the configuration section of the log4net, not sure if I have to configure something ...
0
votes
1answer
32 views

log4net Logging Debug.WriteLine and Console.WriteLine

I recently came accross log4net thanks to a user here. Anyways, I am wanting to log every Console.Write() and Debug.Write() automatically to the single log file I have configured. Also, I use many ...
0
votes
0answers
31 views

New-Logger issue?

Do you have any idea why New-Logger function doesn't work when log4net debug mode is on? ie. when <log4net debug="true"> ... </log4net> When I change debug attribute in the sample code ...
0
votes
0answers
49 views

Teamcity failing to install packages via nuget

SOLVED - PLEASE SEE COMMENT I have a project on team city that is failing to install the required packages. This has has worked for over a year but this week all builds started failing. my ...
0
votes
0answers
22 views

Multi User Testing Framework

I'm currently developing an automation testing framework in ASP.NET . The framework consists of a Web UI where different users can login, choose different TestSuites, input settings depending on the ...
0
votes
0answers
27 views

How to log each dynamically generated class into separate log file using log4net?

I am using log4net library and have a common error/debug appender. I've implemented an engine, that dynamically generates classes and compiles assemblies. Is it possible, using log4net, to create ...
1
vote
1answer
60 views

DateTime differences between Windows and Mono, and log4net remote appender

I have a program running on a Linux box under Mono 2.10.9. It logs to a program on a Windows 7 box using log4net. My Linux system clock is set to local time, as well as my Windows machine. Executing ...
1
vote
1answer
56 views

C# Static Readonly log4net logger, any way to change logger in Unit Test?

My class has this line: private static readonly ILog log = LogManager.GetLogger(typeof(Prim)); When I go to unit test, I can't inject a moq logger into this interface so I could count log calls. ...
0
votes
1answer
27 views

Logger is not working

In my Class library, am using Log4net to get the logs. The Log file is been created, but no logs were recorded in it. Help to get logs.... Given below my App.Config and ClassLibrary. Its just creating ...
0
votes
2answers
52 views

Log4net.dll + C# + Crystal Reports = error

Forgive me if it has been answered before but I searched the web and found only desperate people asking exactly my question but nobody giving any answer which I could use. I'm developing an ...
0
votes
1answer
25 views

log4net filepath is empty

Config of my log4net: <log4net> <appender name="ItemsChangeLogFileAppender" type="log4net.Appender.SitecoreLogFileAppender, Sitecore.Logging"> <file ...
1
vote
1answer
34 views

How to log quartz and nhibernate in different log files using log4net

I use in my application nhibernate and qurtz and I would like the log4net to write the logs to different files. the nhibernate logs to "nhibernate.log" and the qurtz logs to "quartz.log". How do I ...
0
votes
1answer
63 views

log4net only works when XmlConfigurator.Configure() is called

I understand that this question has been asked several times, but unfortunately, I haven't been able to get my logging configuration working. I have to be making some very small mistake somewhere. I ...
0
votes
2answers
30 views

log4net with a filter turned off not outputting

I am sure I have used this very filter before, but... I have the level up to debug, the filter off (ie, accept on match = true), and a _log.Debug("whatever") in the filter namespace that is not ...
0
votes
0answers
41 views

Configuring log4net to connect to an initially offline database engine

I have a windows service set up with log4net, logging to a file and a SQL Server database. During initilization, I do my XmlConfigurator.Configure() call. Early on in the service, I execute some ...
0
votes
1answer
26 views

2 instance of Log4Net in same process parallel logging issue

I've read this question: log4net-and-logging-from-parallel-instances I have written a DLL that uses log4net for logging. I have a process that uses my DLL with 2 instances (same process) The first ...
0
votes
2answers
68 views

Could not load file or assembly 'log4net'

I am attempting to deploy a Crystal Reports desktop application, but the application is not able to find my log4net assembly, even though I have verified that my installer is registering the log4net ...
1
vote
1answer
93 views

Log4Net C# logging issue with multi-thread code execution

I am using Log4Net to log an exception in my .Net Windows service application. I want to mention that, my windows service application is running with multi-threading execution, which means that each ...
0
votes
1answer
57 views

Looking for recommendations on using a logging module for WebAPI [closed]

I'm looking for recommendations on using a logging module for WebAPI. Log4Net seems to be the staple logging library, but I've heard ELMAH is great as well. For those of you who are actively building ...
0
votes
3answers
62 views

Different methods are making use of the same other methods. How to know which method is currently using one of these other methods?

I have a Windows Service, which runs 4 different methods periodically. I am using log4net to log these methods. The 4 different methods use some of the same other methods to do their job. My problem ...
1
vote
0answers
50 views

.net program with log4net stops logging

I have a .net program that uses log4net to write logs to the c:\temp directory and stores some app data in the ProgramData directory. The program will run fine for several days then suddenly stop ...
0
votes
0answers
11 views

adoappender does not log in DB while logging in Text file

We ran into a problem, occasionally, we see some of the logs missing in database while text file logger has the logs. I know if the Adoappender fails, it fails silently, is there anyway, we can track ...

1 2 3 4 5 35