mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-31 20:51:30 -04:00
Merge pull request #887 from Alkarex/LogVisibility
Updated log visibility
This commit is contained in:
@@ -253,7 +253,7 @@ class FreshRSS_auth_Controller extends Minz_ActionController {
|
||||
FreshRSS_Auth::giveAccess();
|
||||
invalidateHttpCache();
|
||||
} else {
|
||||
Minz_Log::error($reason);
|
||||
Minz_Log::warning($reason);
|
||||
|
||||
$res = array();
|
||||
$res['status'] = 'failure';
|
||||
|
||||
@@ -322,7 +322,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController {
|
||||
$feed->load(false);
|
||||
}
|
||||
} catch (FreshRSS_Feed_Exception $e) {
|
||||
Minz_Log::notice($e->getMessage());
|
||||
Minz_Log::warning($e->getMessage());
|
||||
$feedDAO->updateLastUpdate($feed->id(), true);
|
||||
$feed->unlock();
|
||||
continue;
|
||||
|
||||
@@ -47,7 +47,7 @@ class FreshRSS_importExport_Controller extends Minz_ActionController {
|
||||
$status_file = $file['error'];
|
||||
|
||||
if ($status_file !== 0) {
|
||||
Minz_Log::error('File cannot be uploaded. Error code: ' . $status_file);
|
||||
Minz_Log::warning('File cannot be uploaded. Error code: ' . $status_file);
|
||||
Minz_Request::bad(_t('feedback.import_export.file_cannot_be_uploaded'),
|
||||
array('c' => 'importExport', 'a' => 'index'));
|
||||
}
|
||||
@@ -69,7 +69,7 @@ class FreshRSS_importExport_Controller extends Minz_ActionController {
|
||||
|
||||
if (!is_resource($zip)) {
|
||||
// zip_open cannot open file: something is wrong
|
||||
Minz_Log::error('Zip archive cannot be imported. Error code: ' . $zip);
|
||||
Minz_Log::warning('Zip archive cannot be imported. Error code: ' . $zip);
|
||||
Minz_Request::bad(_t('feedback.import_export.zip_error'),
|
||||
array('c' => 'importExport', 'a' => 'index'));
|
||||
}
|
||||
@@ -77,7 +77,7 @@ class FreshRSS_importExport_Controller extends Minz_ActionController {
|
||||
while (($zipfile = zip_read($zip)) !== false) {
|
||||
if (!is_resource($zipfile)) {
|
||||
// zip_entry() can also return an error code!
|
||||
Minz_Log::error('Zip file cannot be imported. Error code: ' . $zipfile);
|
||||
Minz_Log::warning('Zip file cannot be imported. Error code: ' . $zipfile);
|
||||
} else {
|
||||
$type_zipfile = $this->guessFileType(zip_entry_name($zipfile));
|
||||
if ($type_file !== 'unknown') {
|
||||
|
||||
@@ -63,7 +63,7 @@ class FreshRSS_update_Controller extends Minz_ActionController {
|
||||
curl_close($c);
|
||||
|
||||
if ($c_status !== 200) {
|
||||
Minz_Log::error(
|
||||
Minz_Log::warning(
|
||||
'Error during update (HTTP code ' . $c_status . '): ' . $c_error
|
||||
);
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ class FreshRSS_CategoryDAO extends Minz_ModelPdo implements FreshRSS_Searchable
|
||||
return $this->bd->lastInsertId();
|
||||
} else {
|
||||
$info = $stm == null ? array(2 => 'syntax error') : $stm->errorInfo();
|
||||
Minz_Log::error('SQL error addCategory: ' . $info[2] );
|
||||
Minz_Log::error('SQL error addCategory: ' . $info[2]);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user