• laravel 操作日志;



    在网上寻找了许多方法,觉得有的地方看不懂,  决定自己写一些关于laravel中调用本身中的操作日志;


    Laravel 日志工具在强大的 Monolog 函数库上提供一层简单的功能。Laravel 默认为应用程序建立每天的日志文件在 storage/logs 目录。你可以像这样把信息写到日志:


    首先 , 在控制器层 写如  :   use Log;


    在你的每个方法中写入: 

    Log::info('This is some useful information.');
    
    Log::warning('Something could be going wrong.');
    
    Log::error('Something is really going wrong.');
    
    三个方法随意调用.
    
    然后去运行你的网页。
    之后回到目录   /storage/logs/laravel.log中看一看是否已经存到日志中。如果存到的话。
    接下来就是使用 file_get_contents() 可以从文件中读取了;
    

  • 相关阅读:
    基于Twisted的简单聊天室
    小学题的python实现
    初识Go(8)
    初识Go(7)
    初识Go(6)
    初识Go(5)
    初识Go(4)
    初识Go(3)
    初识Go(2)
    初识Go(1)
  • 原文地址:https://www.cnblogs.com/hehe520/p/6147535.html
Copyright © 2020-2023  润新知