Common Logging is an Apache project that provides a consistent interface for Logging Implementations in Java. It has been ported to .NET as a SourceForge project.

learn more… | top users | synonyms

0
votes
1answer
46 views

Common.Logging support of logging to file.

I was looking through the documentation for common logging and didn't notice any support for writing to a log file outside of leveraging other logging technologies such as Log4Net, Enterprise library, ...
0
votes
1answer
212 views

How to configure Quartz.Net version 2.1.2.0 integrated with Log4Net

I have downloaded the newest version of Quartz.Net and try to configure it with common.logging and log4net dlls by using below configuration (based on this example) <configSections> ...
1
vote
0answers
44 views

wcf with common.logging issue

Interesting issue I'm trying to solve. So here we have got simple wcf service running on iis7. Code related to common.logging look like: using Common.Logging; private static readonly ILog log = ...
1
vote
1answer
277 views

How can I successfully configure Common.Logging?

I'm attempting to use NuGet packages to configure Common.Logging to use NLog2 in an ASP.Net MVC project. Based on the information provided at the URLs below, I believe my loggers are configured ...
1
vote
1answer
70 views

Why NServiceBus.NHibernate causes CodeAnalysis warning regarding Common.Logging reference?

I have an NServiceBus endpoint configured to UseNHibernateTimeoutPersister. I use EL 5 for logging: <section name="loggingConfiguration" ...
0
votes
2answers
372 views

Common.Logging with PostSharp and NLog 2.0

I use Common.Logging as a wrapper around NLog 2.0. I've done this so that I can replace NLog with another logging provider in the future. I also use PostSharp to not write a try catch block ...
0
votes
1answer
98 views

Error in XAML design mode with nLog and Common.Logging

I am getting the following error: --------------------------- Microsoft Visual Studio --------------------------- Could not load the assembly Common.Logging.NLog because the following errors ...
1
vote
0answers
156 views

ASP.NET MVC 2 + Common.Logging + NLog = Session_Start called for each request

After switching the logging library behind Common.Logging 2.1.1 from log4net to NLog 2.0 my ASP.NET MVC 2 application kept logging correctly, but it started calling the HttpApplication.Session_Start ...
0
votes
2answers
254 views

'LogManager' is an ambiguous reference between .LogManagers

I am getting the error message,"Error 19 'LogManager' is an ambiguous reference between 'Common.Logging.LogManager' and 'NLog.LogManager'". In a C# 2008 application I am trying to add nlog open ...
1
vote
2answers
1k views

Quartz.Net - Common Logging with log4net

I'm trying to implement Quartz.Net. As long as there is no logging configured everything works (the debug output shows "no configuration section found - suppressing logging output"). When logging is ...
1
vote
1answer
148 views

configure common.logging in Azure

I'm developing an app. using Common.Logging (http://netcommon.sourceforge.net/index.html). A simplified logging configuration (which is done in web.config) is as follows: <configuration> ...
6
votes
4answers
4k views

Failed obtaining configuration for Common.Logging from configuration section 'common/logging'

I'm trying to configure a console application with the following logging assemblies: Common.Logging.dll (2.1.0.0) Common.Logging.Log4Net1211.dll (2.1.0.0) log4net.dll (1.2.11.0) If the logger ...
1
vote
1answer
310 views

Common.Logging with multiple factory adaptors

I am currently working on moving a large project over to use Common.Logging and I was hoping to be able to output logging events to more than one 3rd party logging implementation. We currently have ...
1
vote
2answers
439 views

Log levels: Would you consider DEBUG finer than TRACE?

My question originates from this question, where one of the comments suggests that a DEBUG log level is finer grained than TRACE. Looking at what TRACE and DEBUG means in .NET, this seems to make ...
1
vote
1answer
867 views

NServiceBus + Common.Logging + NLog

I'm trying to figure out how to use NServiceBus in combination withCommon.Logging. I just can not get it running. I try to develop a small demo application just for educational purpose. What I did ...
2
votes
1answer
294 views

Making Quartz.net work with log4net 1.2.11.0

I'm using Quartz.net for a project, which depends on Common.Logging 2.0. Problem is, that Common.Logging 2.0 only works with log4net 1.2.10.0, and we got libraries that depends on log4net 1.2.11.0. ...
1
vote
1answer
134 views

Unable to set EventIDs using Common.Logging and NLog

Has anyone figured out how to leverage Common.Logging to set the EventLog ID when wrapping NLog? I have it working beautifully under NLog, but had trouble figuring out how to do it with ...
2
votes
1answer
141 views

Common.Logging for TraceSource

I am trying to adopt Common.Logging in our application, however I am having some trouble setting it up with system.diagnostics. It works with straight up Trace, but not TraceSource. I was using ...
2
votes
2answers
1k views

log4net log file not been written using Quartz.net + Common.Logging

I'm trying to add logging to my windows web service built with Quartz.net using common.logging to write a log file with log4net. My App.config looks like this: <?xml version="1.0"?> ...
4
votes
1answer
925 views

How can I keep nuget from updating dependencies?

I'm attempting to install a nuget package which has incorrectly specified one of it's dependencies. Common.Logging.Log4Net requires log4net = 1.2.10 however the nuget package specifies log4net >= ...
3
votes
3answers
1k views

The type initializer for 'NHibernate.LoggerProvider' threw an exception

I am trying to use the Common.Logging assembly to replace the default nHibernate Log4net logging. I added a reference in my project to: Common.Logging.dll v2.0 NHibernate.Logging.CommonLogging.dll ...
1
vote
1answer
150 views

StackOverflowException with Common.Logging and Common.Logging.Simple.CommonLoggingTraceListener

I'm trying to redirect all log messages from System.Diagnostics.Trace to Common.Logging as documented on the Common.Logging website. Unfortunately when I run my application I get a ...
3
votes
1answer
4k views

Common.Logging config exception

I'm getting the following exception when I try to call var log = LogManager.GetLogger(this.GetType()); A first chance exception of type 'Common.Logging.ConfigurationException' occurred in ...
12
votes
3answers
2k views

Are there any alternatives to Common.Logging? [closed]

We're looking at using Common.Logging in a new .NET project but I'm a bit concerned that the project seems to have become inactive. The homepage was last updated in 2009 and the latest version ...
2
votes
1answer
1k views

How do I switch from Log4Net to NLog in Quartz.Net?

My company's standard logging tool is NLog. I'm trying to introduce Quartz.net and was asked if it could use NLog instead of Log4Net. I know I can recompile to use NLog, but I'd like to do it from ...
2
votes
3answers
217 views

Common.Logging - how to get callback on log writing?

I have a library, which uses Common.Logging. I need to get my code called when any write to it's log occurs.
8
votes
2answers
2k views

Can NLog v2 be used with Common.Logging

I tried using these together today, and was getting a version mismatch, as it's looking for NLog v1. Does Common.Logging support NLog v2 yet? If not, does anyone know if an assembly version ...
0
votes
2answers
601 views

NServiceBus Generic Host and Common.Logging

Folks, I got NServiceBus logging working correctly following the directions found here: http://nservicebus.com/Logging.aspx However, I am using Common.Logging. If I use the LogManager for ...