Exemple #1
0
        public static void ErrorLog(string msg)
        {
            DebugVS(msg);
            ILog log = new Log4Api();

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

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

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

            log.InfoLog(msg);
        }