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

5.5k Views Asked by At

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 v1.2.0.4000

and then added the following to my Web.config:

<add key="nhibernate-logger" value="NHibernate.Logging.CommonLogging.CommonLoggingLoggerFactory, Hibernate.Logging.CommonLogging"/>

My ulitmate goal is to replace the Log4net logging with the Enterprise Library 5.0, but I'm just taking it one step at a time at the moment.

When I run my app now I get the following exception:

The type initializer for 'NHibernate.Cfg.Configuration' threw an exception. =>
The type initializer for 'NHibernate.LoggerProvider' threw an exception. =>
The type initializer for 'NHibernate.LoggerProvider' threw an exception. =>
Unable to instantiate: =>
Value cannot be null.\r\nParameter name: type
 at NHibernate.LoggerProvider.LoggerFor(Type type)
 at NHibernate.Cfg.Configuration..cctor()

Is there anything that I'm missing to use the Common.Logging with nHibernate? I've tried following the instructions I've found on the web but it's not working and I can't find a solution :(

I'm using NHibernate v3.2.0.4000.

PS. This is my very first post on this site so sorry if the formatting is not right, I will glady accept constructive criticism :o)

4

There are 4 best solutions below

0
On

try installing the NHibernate.Logging package from NuGet (or referencing the library, if you don't use NuGet). Worked for me.

Cheers.

0
On

Short Version

Check if your project's Assembly Name matches the value in the nhibernate-logger key in your web.config

Long Version

This is an old question, but I came across it when I had the same error. In my case the problem was caused because I renamed the project where the NLogFactory was located and changed the web.config to reflect that, but forgot to change the project's assembly name.

That is, I renamed my project from CDP.Core to ARR.Code, went into my web.config to change

<add key="nhibernate-logger" value="CDP.Core.DBContext.Framework.NLogFactory, CDP.Core" />

To:

<add key="nhibernate-logger" value="ARR.Core.DBContext.Framework.NLogFactory, ARR.Core" />

But forgot to go into the project properties, "Application" tab, and change "Assembly name" to the new name.

1
On

switch Hibernate.Logging.CommonLogging with NHibernate.Logging.CommonLogging

0
On

If you are running your solution on windows server 2008, and using NHibernate 3.0+, make sure you have .Net 3.5 installed and that aspnet_regiis has been executed for .net framework (or frameworkx64) 2.0. Also if it is a website, make sure it is running on classic .net app pool and not the default app pool.

NHibernate 3.0+ needs .net 3.0 and above.