0
我在CakePHP 2.5.1 lib/Cake/Log/Engine/FileLog.php
中發現了以下代碼,其中包含rotate
選項的包日誌文件。如何在CakePHP 2.1.5中使用rotate選項創建日誌文件
protected $_defaults = array(
'path' => LOGS,
'file' => null,
'types' => null,
'scopes' => array(),
'rotate' => 10,
'size' => 10485760, // 10MB
'mask' => null,
);
但是,我的問題是如何創建帶旋轉選項的日誌文件在CakePHP 2.1.5
?