123456789101112131415161718192021222324 |
- using WCS.Core.Redis;
- namespace WCS.Core
- {
- public class DebugPublisher
- {
- static DebugPublisher()
- {
- }
- public static void Publish(string channel, string msg)
- {
- try
- {
- RedisHelper.Default.Publish(channel, msg);
- }
- catch
- {
- // TODO:日常日志
- }
- }
- }
- }
|