Ejemplo n.º 1
0
 public Log(ResponseLog responseLog, LogLevel logLevel, LogConfiguration logConfiguration)
     : this(logConfiguration, logLevel)
 {
     InitializeLog <ResponseLog>(responseLog);
 }
Ejemplo n.º 2
0
 private Log(LogConfiguration logConfiguration, LogLevel logLevel) : this(logLevel)
 {
     Place     = logConfiguration.ComponentType;
     ClassName = logConfiguration.ClassName;
 }
Ejemplo n.º 3
0
 public Log(EmailLog emailLog, LogLevel logLevel, LogConfiguration logConfiguration)
     : this(logConfiguration, logLevel)
 {
     InitializeLog <EmailLog>(emailLog);
 }
Ejemplo n.º 4
0
 public Log(ApplicationError applicationError, LogLevel logLevel, LogConfiguration logConfiguration)
     : this(logConfiguration, logLevel)
 {
     InitializeLog <ApplicationError>(applicationError);
 }