CounterLogger.cs 671 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.RT.Log
  6. {
  7. public class CounterLogger
  8. {
  9. public string RecoverMessage { get; set; }
  10. public string ErroMessage { get; set; }
  11. bool _isError;
  12. public void Error(string error)
  13. {
  14. if (!_isError)
  15. {
  16. _isError = true;
  17. LOG.Error(ErroMessage + error);
  18. }
  19. }
  20. public void Recover()
  21. {
  22. if (_isError)
  23. {
  24. _isError = false;
  25. LOG.Info(RecoverMessage, true);
  26. }
  27. }
  28. }
  29. }