0
votes
1answer
23 views
log4net configuration exception
I am using log4net for logging. My logging configuration is stored in a separate file.
Web.Config:ConfigSections
<section name="log4net" …
2
votes
2answers
39 views
logging- changing implementation?
We have been using log4net for logging our asp.net web forms application. Our logging is typically in our business layer and the typical implementation is like this
SomeMethodCall(MethodParams)
{
…
2
votes
2answers
18 views
how do you make log4net output to current working directory?
Is it possible to have log4net put its log files relative to the current working directory instead of the directory where the application resides?
In other words, if I run ..\myapp.exe, I don't …
0
votes
1answer
33 views
How to implement a sample log4net repository
How do I implement a custom LOG4NET parser for my XML file. My XML file contains:
(1) extra attributes on the appender element
(2) custom replacements on the elements of some of the appenders that …
1
vote
2answers
24 views
How do I control WCF logging from a log4net config file?
We do all our logging with log4net, our support staff etc know how to edit the log4net config files. We are now making use of WCF in our apps.
Therefore how can I enable the WCF built in logging to …
1
vote
0answers
12 views
Prism 2.1: Accessing the IOC Container from App.xaml?
I am creating a Prism 2.1 app in which I have implemented logging, using Log4Net in a custom logger derived from ILoggerFacade. Logging works great; I simply resolve ILoggerFacade against the IOC …
0
votes
2answers
56 views
log4net in ASP.NET MVC application does not log
I have a number of ASP.NET applications that use log4net without issue. I have not been able to get log4net to log anything in any of the services I wrote using the MVC libraries. I have the …
0
votes
2answers
12 views
How to set Quartz.net worker thread name?
How can I set name of the worker thread in Quartz.net?
[2009-12-15 08:56:25] [DefaultQuartzScheduler_Worker-1] INFO
I wanted to see some meaningful information in the logs. I tried using JobDetail …
1
vote
2answers
45 views
Does log4net support including the call stack in a log message
I wish to include the call stack (e.g. the methods that called me) in a log4net message. Is there a standard way of doing this?
(I know this will be slow, but I only need to do it on some errors)
5
votes
8answers
153 views
What are the best practices for including logging using log4net?
I have been told to add “logging” to my code using log4net, the problem is no one can travel in time and see what real world problems the logging will need to be used to solve.
Therefore is there a …
1
vote
1answer
32 views
Log4net - log parts of code, used in a couple of methods
Hi. I have some trouble.
My application could be divided to 3 logical parts (import, processing and export). There are some parts of code which are used in several parts of my application. How can I …
1
vote
1answer
30 views
How can I enable logging with Ninject?
Is there a way to get Ninject to log out what it is doing?
In particular I'd like to see when objects are being created. As I have a mix of transient and singleton objects it'd be very useful for …
1
vote
2answers
56 views
NHibernate without log4net?
The problem is NHibernates dependany on log4net. I am trying to build an IoC app with interchangable Loggers, and this thing gets in the way.
Is there a build out there without this dependancy or do …
3
votes
3answers
58 views
Need advice on server side logging with log4net.
Dear ladies and sirs.
We are using log4net for our server side logging. The problem we are facing is with the FileAppender. Here is our log4net section in the app.config file:
<log4net …
0
votes
1answer
24 views
Log4Net - Create an Smtpappender programatically
Hello
I am a beginner in log4net and I am trying to add an appender in my code and then to send an email in case of an Error. I dont want to use a config file. My program runs but I never receive the …
