8
votes
2answers
126 views
Is log4net dead?
I'm looking for a logging framework and it seems log4net is or was very popular. The last release was over 2 years ago. It has not been updated for .net 3.0 or 3.5 or even visual s …
0
votes
1answer
37 views
logging in log4net to different appenders based on circumstances
Hi there,
I am using log4net and in one class require logging to a RollingFile appender, but then in another class, I wish to log to the event log + rolling file + console appende …
1
vote
1answer
36 views
Empty NHibernate log file with log4net
I'm trying to get logging enabled on my application using Fluent NHibernate and log4net. I have tried the things described here, here, here and here. The log file is getting create …
0
votes
1answer
11 views
How to filter by NDC?
In log4net I want to filter log messages by the value of the NDC like this:
<filter type="log4net.Filter.PropertyFilter">
<Key value="NDC" />
<stringToMat …
0
votes
1answer
39 views
Sharepoint Timer Job and log4net
Hi mates
I'm developing a custom SharePoint solution which consist of a feature and a timer job (which is created by the feature in FeatureActivated).
In my solution I want to use …
0
votes
1answer
63 views
Log4net just stopped working, got a reason why, but don’t know how to fix it
My log4net used to work, and not sure exactly when it stopped working, but today when I put the application onto a production server, I noticed no logs getting produced, here is th …
2
votes
10answers
207 views
Logging Framework, a good idea?
First of all, apologies for the subjective sounding title. This is intended as a direct question.
At present I am working on a suite of tools:
A C# Windows Service, to primarily …
2
votes
2answers
98 views
Is log4net killing my WCF unit tests?
I have three projects in my solution:
A WCF web service which provides functionality I want to test
A Web Application which calls that web service
A test project which runs tests …
1
vote
1answer
61 views
How configure log4net for a c# Windows service
I have a windows service where the app.config file and the log4net.config files are seperate. The logging is not working.
In my app.config file, I have the following in the secti …
0
votes
1answer
22 views
Log4net - object reference not set issue
I have 2 test and 1 production server.
In my global.asax file - I have this one line of code:
void Application_Start(object sender, EventArgs e)
{
// Code that runs on app …
0
votes
1answer
17 views
xmlconfigurator.configure not throwing exceptions
I am trying to configure log4net for an application.
System.IO.FileInfo fi = new System.IO.FileInfo("some junk file name");
log4net.Config.XmlConfigurator.Configure(fi);
log4net.C …
1
vote
1answer
74 views
Log4net Not Creating Log File For NHibernate
Hi,
This is my first serious project using NHibernate and I have setup log4net to output the sql generated by NHibernate but after running my web app I cannot find any log files.
…
1
vote
5answers
265 views
Log4Net.How can I change the file location programmatically c#?
Hi,
I am totally new to Log4net.
I have managed to get something going by adding a config file and simple logging
I have hardcoded the value to be "c:\temp\log.txt" but this is not …
0
votes
1answer
60 views
log4net enable debug logging at runtime
Im trying to get debugging working without an app.config. I have the following code:
public static class Logging
{
private static ConsoleAppender GetConsoleAppender()
{
…
1
vote
1answer
24 views
highe speed logging using log4net
I am interested in very high speed logging within log4net(around 10K messages per second).
to that end , i thought of implementing the following modules:
protocol buffers based L …
