Exemple #1
0
 protected LoggerBase(string parentApplicationName, string parentApplicationVersion, string messageType, string applicationLoggingId, ILogFrameworkAgent frameworkLogger)
 {
     BuildLoggerInfo(messageType, applicationLoggingId);
     BuildApplicationInfo(parentApplicationName, parentApplicationVersion);
     _frameworkLogger = frameworkLogger;
     ConstructCommon();
 }
Exemple #2
0
 public BasicInstrumentationLogger(string parentApplicationName, string parentApplicationVersion, string applicationLoggingId, ILogFrameworkAgent frameworkLogger) : base(parentApplicationName, parentApplicationVersion, LoggingMessageTypes.Instrumentation.ToString(), applicationLoggingId, frameworkLogger)
 {
     LogDurationInPushes = true;
 }
 public ApiRequestLogger(Assembly parentApplication, string applicationLoggingId, ILogFrameworkAgent frameworkLogger, ApiLogVerbosity apiLogVerbosity) : base(parentApplication,
                                                                                                                                                              LoggingMessageTypes.RequestResponse.ToString(), applicationLoggingId, frameworkLogger)
 {
     LogDurationInPushes = true;
     _apiLogVerbosity    = apiLogVerbosity;
 }
Exemple #4
0
 public BasicRunMetricsLogger(string parentApplicationName, string parentApplicationVersion, string applicationLoggingId, ILogFrameworkAgent frameworkLogger) : base(parentApplicationName, parentApplicationVersion, LoggingMessageTypes.Instrumentation.ToString(), applicationLoggingId, frameworkLogger)
 {
 }
Exemple #5
0
 public BasicValidationLogger(Assembly parentApplication, string applicationLoggingId, ILogFrameworkAgent frameworkLogger) : base(parentApplication, LoggingMessageTypes.Validation.ToString(), applicationLoggingId, frameworkLogger)
 {
 }