private static void RegistrarLogEnArchivo(string strMensaje) { _objLogear= new FileLogger(); _objLogear.EscribirLog(strMensaje); }
private static void RegistrarLogEnBaseDatos(string strMensaje) { _objLogear = new DataBaseLogger(_logType); _objLogear.EscribirLog(strMensaje); }
private static void RegistrarLogConsola(string strMensaje) { _objLogear = new ConsoleLogger(_logType); _objLogear.EscribirLog(strMensaje); }