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

Commit

Permalink
Reacting to verbose rename
Browse files Browse the repository at this point in the history
  • Loading branch information
JunTaoLuo committed Dec 3, 2015
1 parent 4432597 commit 47476e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 47476e0

Please sign in to comment.