Skip to content
This repository has been archived by the owner on Dec 28, 2017. It is now read-only.

Reacting to verbose rename #22

Merged
merged 1 commit into from
Dec 7, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Redis/RedisMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static RedisMessage FromBytes(byte[] data, ILogger logger)
int charCode = stream.ReadByte();
if (charCode == -1)
{
logger.LogVerbose("Received Message could not be parsed.");
logger.LogDebug("Received Message could not be parsed.");
throw new EndOfStreamException();
}
char c = (char)charCode;
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Redis/RedisMessageBus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ private async Task ConnectToRedisAsync()

await _connection.SubscribeAsync(_key, OnMessage);

_logger.LogVerbose("Subscribed to event " + _key);
_logger.LogDebug("Subscribed to event " + _key);
}

internal static class State
Expand Down