I'm using Castle windsor, and initiating it using a configuration file (and really want to keep everything there), which also holds a logging facility.
When I get an error from the windsor on initialization (due to wrong configuration, missing dependencies etc.), I don't have a logger initiated and therefore - can't write the error anywhere...Here's my code:
private static ILogger m_Logger { get; set; }
static void Main(string[] args)
{
try
{
// Windsor has missing dependencies
var container = new WindsorContainer("windsor.xml");
// Did not make it here...
var logger = container.Resolve<ILogger>();
m_Logger.Debug("Testing 123");
}
catch (Exception)
{
// Logger was not initialized, null reference exception!
m_Logger.Debug("Testing 123");
}
}
What are my options here?
Thanks, Nir.
You can write to the Windows Event log: