DebugPublisher.cs 418 B

123456789101112131415161718192021222324
  1. using WCS.Core.Redis;
  2. namespace WCS.Core
  3. {
  4. public class DebugPublisher
  5. {
  6. static DebugPublisher()
  7. {
  8. }
  9. public static void Publish(string channel, string msg)
  10. {
  11. try
  12. {
  13. RedisHelper.Default.Publish(channel, msg);
  14. }
  15. catch
  16. {
  17. // TODO:日常日志
  18. }
  19. }
  20. }
  21. }