Log.php 381 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: leo
  5. * Date: 2018/3/2
  6. * Time: 下午1:29
  7. */
  8. namespace common\helpers;
  9. use Yii;
  10. class Log
  11. {
  12. /**
  13. * 文件日志
  14. * @param $message
  15. * @param $category
  16. */
  17. public static function cliInfo($message, $category = 'application'){
  18. Yii::getLogger()->flush(true);
  19. Yii::info($message, $category);
  20. }
  21. }