コード例 #1
0
ファイル: Log.cs プロジェクト: aerooneqq/sentenceapi
 public Log(ResponseLog responseLog, LogLevel logLevel, LogConfiguration logConfiguration)
     : this(logConfiguration, logLevel)
 {
     InitializeLog <ResponseLog>(responseLog);
 }
コード例 #2
0
ファイル: Log.cs プロジェクト: aerooneqq/sentenceapi
 private Log(LogConfiguration logConfiguration, LogLevel logLevel) : this(logLevel)
 {
     Place     = logConfiguration.ComponentType;
     ClassName = logConfiguration.ClassName;
 }
コード例 #3
0
ファイル: Log.cs プロジェクト: aerooneqq/sentenceapi
 public Log(EmailLog emailLog, LogLevel logLevel, LogConfiguration logConfiguration)
     : this(logConfiguration, logLevel)
 {
     InitializeLog <EmailLog>(emailLog);
 }
コード例 #4
0
ファイル: Log.cs プロジェクト: aerooneqq/sentenceapi
 public Log(ApplicationError applicationError, LogLevel logLevel, LogConfiguration logConfiguration)
     : this(logConfiguration, logLevel)
 {
     InitializeLog <ApplicationError>(applicationError);
 }