зеркало из https://github.com/nextcloud/server.git
Supress any warnings if log file does not exist
This commit is contained in:
Родитель
fc56a668ce
Коммит
3ce6344d40
|
@ -63,7 +63,7 @@ class OC_Log_Owncloud {
|
|||
self::init();
|
||||
$minLevel=OC_Config::getValue( "loglevel", OC_Log::WARN );
|
||||
$entries = array();
|
||||
$handle = fopen(self::$logFile, 'r');
|
||||
$handle = @fopen(self::$logFile, 'r');
|
||||
if ($handle) {
|
||||
// Just a guess to set the file pointer to the right spot
|
||||
$maxLineLength = 150;
|
||||
|
|
Загрузка…
Ссылка в новой задаче