예제 #1
0
 private static void OnErrorMessage(object sender, RedisErrorEventArgs e)
 {
     LogUtils.Error($"【Redis.InternalError】EndPoint: {e.EndPoint}, error: {e.Message}");
 }
예제 #2
0
 private static void OnConnectionFailed(object sender, ConnectionFailedEventArgs e)
 {
     LogUtils.Error($"【Redis.InternalError】ConnectionType:{e.ConnectionType}, EndPoint: {e.EndPoint}, FailureType: {e.FailureType}", e.Exception);
 }
예제 #3
0
 private static void OnInternalError(object sender, InternalErrorEventArgs e)
 {
     LogUtils.Error($"【Redis.InternalError】ConnectionType:{e.ConnectionType}, EndPoint: {e.EndPoint}, Origin: {e.Origin}", e.Exception);
 }