Browse Source

Some logging for pubsub

pull/65/head
Sebastian Stehle 9 years ago
parent
commit
2af2045f85
  1. 4
      src/Squidex.Infrastructure.Redis/RedisSubscription.cs

4
src/Squidex.Infrastructure.Redis/RedisSubscription.cs

@ -77,6 +77,10 @@ namespace Squidex.Infrastructure.Redis
var token = string.Join("#", parts.Skip(1));
subject.OnNext(token);
log.LogDebug(w => w
.WriteProperty("action", "ReceiveRedisMessage")
.WriteProperty("state", "Received"));
}
}
catch (Exception ex)

Loading…
Cancel
Save