]> git.mxchange.org Git - friendica.git/blobdiff - mod/poco.php
Log function
[friendica.git] / mod / poco.php
index a16495326009eed93b10ac60968a874e541d7ffa..9150299547176e4cbb8bdd5fa42465daeb52a5cb 100644 (file)
@@ -8,6 +8,7 @@ use Friendica\App;
 use Friendica\Content\Text\BBCode;
 use Friendica\Core\Cache;
 use Friendica\Core\Config;
+use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
@@ -121,7 +122,7 @@ function poco_init(App $a) {
        $itemsPerPage = ((x($_GET, 'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults);
 
        if ($global) {
-               logger("Start global query", LOGGER_DEBUG);
+               Logger::log("Start global query", LOGGER_DEBUG);
                $contacts = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND NOT `hide` AND `network` IN ('%s', '%s', '%s') AND `updated` > `last_failure`
                        ORDER BY `updated` DESC LIMIT %d, %d",
                        DBA::escape($update_limit),
@@ -132,7 +133,7 @@ function poco_init(App $a) {
                        intval($itemsPerPage)
                );
        } elseif ($system_mode) {
-               logger("Start system mode query", LOGGER_DEBUG);
+               Logger::log("Start system mode query", LOGGER_DEBUG);
                $contacts = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`,
                                `profile`.`gender` AS `pgender`, `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`,
                                `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry`, `user`.`account-type`
@@ -144,7 +145,7 @@ function poco_init(App $a) {
                        intval($itemsPerPage)
                );
        } else {
-               logger("Start query for user " . $user['nickname'], LOGGER_DEBUG);
+               Logger::log("Start query for user " . $user['nickname'], LOGGER_DEBUG);
                $contacts = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
                        AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`)
                        AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra LIMIT %d, %d",
@@ -157,7 +158,7 @@ function poco_init(App $a) {
                        intval($itemsPerPage)
                );
        }
-       logger("Query done", LOGGER_DEBUG);
+       Logger::log("Query done", LOGGER_DEBUG);
 
        $ret = [];
        if (x($_GET, 'sorted')) {
@@ -369,7 +370,7 @@ function poco_init(App $a) {
        } else {
                System::httpExit(500);
        }
-       logger("End of poco", LOGGER_DEBUG);
+       Logger::log("End of poco", LOGGER_DEBUG);
 
        if ($format === 'xml') {
                header('Content-type: text/xml');