浏览代码

try catch logs

develop
Robin Thoni 8 年前
父节点
当前提交
50ae8169ec
共有 1 个文件被更改,包括 11 次插入1 次删除
  1. 11
    1
      src/Utils/Business/LuLog.php

+ 11
- 1
src/Utils/Business/LuLog.php 查看文件

@@ -15,6 +15,16 @@ class LuLog {
15 15
 
16 16
     public static function log($data)
17 17
     {
18
-        file_put_contents(self::$_logFilePath, $data, FILE_APPEND);
18
+        try {
19
+            file_put_contents(self::$_logFilePath, $data, FILE_APPEND);
20
+        }
21
+        catch (\Exception $e)
22
+        {
23
+            
24
+        }
25
+        catch (\Error $e)
26
+        {
27
+            
28
+        }
19 29
     }
20 30
 }

正在加载...
取消
保存