From 4f4dfe1d230c823a5e995a32a2779a8d9fafd6bd Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Mon, 16 Apr 2018 18:08:26 +1200 Subject: [PATCH] Move RedisLog to Internal namespace (#2038) --- .../{ => Internal}/RedisLog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/Microsoft.AspNetCore.SignalR.Redis/{ => Internal}/RedisLog.cs (98%) diff --git a/src/Microsoft.AspNetCore.SignalR.Redis/RedisLog.cs b/src/Microsoft.AspNetCore.SignalR.Redis/Internal/RedisLog.cs similarity index 98% rename from src/Microsoft.AspNetCore.SignalR.Redis/RedisLog.cs rename to src/Microsoft.AspNetCore.SignalR.Redis/Internal/RedisLog.cs index 085133facc..4270e8b035 100644 --- a/src/Microsoft.AspNetCore.SignalR.Redis/RedisLog.cs +++ b/src/Microsoft.AspNetCore.SignalR.Redis/Internal/RedisLog.cs @@ -6,7 +6,7 @@ using System.Linq; using Microsoft.Extensions.Logging; using StackExchange.Redis; -namespace Microsoft.AspNetCore.SignalR.Redis +namespace Microsoft.AspNetCore.SignalR.Redis.Internal { // We don't want to use our nested static class here because RedisHubLifetimeManager is generic. // We'd end up creating separate instances of all the LoggerMessage.Define values for each Hub.