]> git.mxchange.org Git - friendica.git/commitdiff
Improved logging for the search.
authorMichael Vogel <icarus@dabo.de>
Sun, 8 Mar 2015 02:24:54 +0000 (03:24 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 8 Mar 2015 02:24:54 +0000 (03:24 +0100)
mod/search.php

index 50d8e60ce783e734b914af4c231cc7658454d082..670df299e5b673645bb2ca9ad9f1836880f7a996 100644 (file)
@@ -133,7 +133,7 @@ function search_content(&$a) {
        // No items will be shown if the member has a blocked profile wall.
 
        if($tag) {
-               logger("Start tag search for '".$search."'");
+               logger("Start tag search for '".$search."'", LOGGER_DEBUG);
 
                $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
                                `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
@@ -148,7 +148,7 @@ function search_content(&$a) {
                                intval(local_user()), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), dbesc(protect_sprintf($search)),
                                intval($a->pager['start']), intval($a->pager['itemspage']));
        } else {
-               logger("Start fulltext search for '".$search."'");
+               logger("Start fulltext search for '".$search."'", LOGGER_DEBUG);
 
                if (get_config('system','use_fulltext_engine')) {
                        $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
@@ -181,12 +181,12 @@ function search_content(&$a) {
        else
                $o .= '<h2>Search results for: ' . $search . '</h2>';
 
-       logger("Start Conversation");
+       logger("Start Conversation for '".$search."'", LOGGER_DEBUG);
        $o .= conversation($a,$r,'search',false);
 
        $o .= alt_pager($a,count($r));
 
-       logger("Done");
+       logger("Done '".$search."'", LOGGER_DEBUG);
 
        return $o;
 }