Don't LOG_ERR missing paths (misspelling clients aren't errors)

This commit is contained in:
Mikael Nordfeldth 2016-01-14 02:22:47 +01:00
parent 53339ff463
commit 99261e0781
1 changed files with 3 additions and 7 deletions

View File

@ -27,9 +27,7 @@
* @link http://status.net/ * @link http://status.net/
*/ */
if (!defined('STATUSNET') && !defined('LACONICA')) { if (!defined('GNUSOCIAL')) { exit(1); }
exit(1);
}
/** /**
* URL Router * URL Router
@ -1098,11 +1096,9 @@ class Router
try { try {
$match = $this->m->match($path); $match = $this->m->match($path);
} catch (Exception $e) { } catch (Exception $e) {
common_log(LOG_ERR, "Problem getting route for $path - " . common_debug('Problem getting route for '._ve($path).' - '._ve($e->getMessage()));
$e->getMessage());
// TRANS: Client error on action trying to visit a non-existing page. // TRANS: Client error on action trying to visit a non-existing page.
$cac = new ClientErrorAction(_('Page not found.'), 404); throw new ClientException(_('Page not found.'), 404);
$cac->showPage();
} }
return $match; return $match;