Is there a way to have have two implementations of Logger which are triggert ?
I'd like to have one for event log and a console logger.
In my code I only use the registered ILog.
Here the code I currently set my logger
LogManager.LogFactory = new ServiceStack.Logging.EventLog.EventLogFactory("QAServer", "Foo");
Do I have to create a new Factory as a kind of decorator or is there a simpler way for doing this?