mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
fix missing spaces
This commit is contained in:
parent
d853c60d7e
commit
9d95fff427
2 changed files with 3 additions and 3 deletions
|
|
@ -21,7 +21,7 @@ use \OCP\ILogger;
|
|||
*/
|
||||
|
||||
class Log implements ILogger {
|
||||
|
||||
|
||||
private $logger;
|
||||
|
||||
/**
|
||||
|
|
@ -153,7 +153,7 @@ class Log implements ILogger {
|
|||
// interpolate replacement values into the message and return
|
||||
$message = strtr($message, $replace);
|
||||
|
||||
$logger=$this->logger;
|
||||
$logger = $this->logger;
|
||||
$logger::write($app, $message, $level);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -405,7 +405,7 @@ class Server extends SimpleContainer implements IServerContainer {
|
|||
*
|
||||
* @return \OCP\ILogger
|
||||
*/
|
||||
function getLogger(){
|
||||
function getLogger() {
|
||||
return $this->query('Logger');
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue