心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Builder.php 843B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年10月24日
  7. * 日志操作接口类
  8. */
  9. namespace core\log;
  10. interface Builder
  11. {
  12. // 用于获取单一实例
  13. public static function getInstance();
  14. /**
  15. * 日志写入
  16. *
  17. * @param string $content
  18. * 日志内容
  19. * @param string $level
  20. * 内容级别
  21. */
  22. public function write($content, $level = "info", $username = null);
  23. /**
  24. * 错误日志快速写入,error级别
  25. *
  26. * @param string $content
  27. * 日志内容
  28. */
  29. public function error($content);
  30. /**
  31. * 基础日志快速写入, info级别
  32. *
  33. * @param string $content
  34. * 日志内容
  35. */
  36. public function info($content);
  37. }