mirror of
https://github.com/friendica/friendica
synced 2025-04-26 08:30:10 +00:00
Log function
implement log() function.
This commit is contained in:
parent
d6d593d724
commit
14fde5dc9b
122 changed files with 1280 additions and 1161 deletions
|
@ -4,6 +4,7 @@ namespace Friendica\Core\Session;
|
|||
|
||||
use Friendica\BaseObject;
|
||||
use Friendica\Core\Cache;
|
||||
use Friendica\Core\Logger;
|
||||
use Friendica\Core\Session;
|
||||
use SessionHandlerInterface;
|
||||
|
||||
|
@ -33,7 +34,7 @@ class CacheSessionHandler extends BaseObject implements SessionHandlerInterface
|
|||
Session::$exists = true;
|
||||
return $data;
|
||||
}
|
||||
logger("no data for session $session_id", LOGGER_TRACE);
|
||||
Logger::log("no data for session $session_id", LOGGER_TRACE);
|
||||
return '';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue