I just pulled the latest from master and when I try to run/debug the server project (Quartz.Server.2010.sln) I get this error:
{"Failed obtaining configuration for Common.Logging from configuration section 'common/logging'."}
Anybody else seeing this? The app.config file seems to be correct. Tried it on VS2010 and VS2012 and I get the same error.
This is what is throwing the exception:
public QuartzServer()
{
logger = LogManager.GetLogger(GetType());
}
Also did a fresh clone from github and no worky either. Any suggestions?
Replacing this section of the app.config
<common>
<logging>
<factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4net">
<arg key="configType" value="INLINE" />
</factoryAdapter>
</logging>
</common>
With this section fixes it, so apparently it’s something related to the log4netfactory.
<common>
<logging>
<factoryAdapter type="Common.Logging.Simple.ConsoleOutLoggerFactoryAdapter, Common.Logging">
<arg key="level" value="DEBUG" />
<arg key="showLogName" value="true" />
<arg key="showDataTime" value="true" />
<arg key="dateTimeFormat" value="yyyy/MM/dd HH:mm:ss:fff" />
</factoryAdapter>
</logging>
</common>