Exemplo n.º 1
0
        public static void ErrorLog(string msg)
        {
            DebugVS(msg);
            ILog log = new Log4Api();

            log.ErrorLog(msg);
        }
Exemplo n.º 2
0
        public static void ErrorLog(Exception ex)
        {
            DebugVS(ex);
            ILog log = new Log4Api();

            log.ErrorLog(ex);
        }
Exemplo n.º 3
0
        public static void InfoLog(Exception ex)
        {
            DebugVS(ex);
            ILog log = new Log4Api();

            log.InfoLog(ex);
        }
Exemplo n.º 4
0
        public static void InfoLog(string msg)
        {
            DebugVS(msg);
            ILog log = new Log4Api();

            log.InfoLog(msg);
        }