public void Warn(string msg) { var textLogger = new TextLogger(); var dbLogger = new DbLogger(); textLogger.Warn(msg); dbLogger.Warn(msg); }