Exemplo n.º 1
0
 public void Debug(string message, LogInfo para = null, IDbTransaction trans = null)
 {
     Logging(GetType().Name, DateTime.Now, LogLevel.Debug, message, string.Empty,
             para?.UserClient, trans);
 }
Exemplo n.º 2
0
 public void Fatal(Exception ex, LogInfo para = null, IDbTransaction trans = null)
 {
     Logging(GetType().Name, DateTime.Now, LogLevel.Fatal, ex.Message, ex.StackTrace,
             para?.UserClient, trans);
 }