Beispiel #1
0
 private void LogCommand(TRequest request)
 {
     logger.Info(m => m("Logging handler pipeline call. Pipeline timing {0} target, for {1} with values of {2} at: {3}", timing.ToString(), typeof(TRequest), JsonConvert.SerializeObject(request), DateTime.UtcNow));
 }
 private void LogCommand(TRequest request)
 {
     //TODO: LibLog has no async support, so remains a blocking call for now
     logger.InfoFormat("Logging handler pipeline call. Pipeline timing {0} target, for {1} with values of {2} at: {3}", _timing.ToString(), typeof(TRequest), JsonConvert.SerializeObject(request), DateTime.UtcNow);
 }
 private void LogCommand(TRequest request)
 {
     //TODO: LibLog has no async support, so remains a blocking call for now
     s_logger.LogInformation("Logging handler pipeline call. Pipeline timing {HandlerTiming} target, for {RequestType} with values of {Request} at: {Time}", _timing.ToString(), typeof(TRequest), JsonSerializer.Serialize(request), DateTime.UtcNow);
 }
Beispiel #4
0
 private void LogCommand(TRequest request)
 {
     s_logger.LogInformation("Logging handler pipeline call. Pipeline timing {HandlerTiming} target, for {RequestType} with values of {Request} at: {Time}", _timing.ToString(), typeof(TRequest), JsonSerializer.Serialize(request), DateTime.UtcNow);
 }
Beispiel #5
0
 private void LogCommand(TRequest request)
 {
     _logger.Value.InfoFormat("Logging handler pipeline call. Pipeline timing {0} target, for {1} with values of {2} at: {3}", _timing.ToString(), typeof(TRequest), JsonSerializer.Serialize(request), DateTime.UtcNow);
 }