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