2014-11-19 14:10:48 -05:00
|
|
|
<?php
|
2022-12-05 13:25:47 -05:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2014-11-19 14:10:48 -05:00
|
|
|
/**
|
2015-02-26 05:37:37 -05:00
|
|
|
* The MIT License (MIT)
|
2014-11-19 14:10:48 -05:00
|
|
|
*
|
2015-02-26 05:37:37 -05:00
|
|
|
* Copyright (c) 2014 Christian Kampka <christian@kampka.net>
|
2014-11-19 14:10:48 -05:00
|
|
|
*
|
2015-02-26 05:37:37 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2014-11-19 14:10:48 -05:00
|
|
|
*
|
2015-02-26 05:37:37 -05:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
2014-11-19 14:10:48 -05:00
|
|
|
*
|
2015-02-26 05:37:37 -05:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
* THE SOFTWARE.
|
2014-11-19 14:10:48 -05:00
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2016-05-02 08:04:58 -04:00
|
|
|
namespace OC\Log;
|
|
|
|
|
|
2022-12-05 13:54:37 -05:00
|
|
|
use OC\SystemConfig;
|
2018-04-24 20:27:43 -04:00
|
|
|
use OCP\Log\IWriter;
|
|
|
|
|
|
2022-12-05 13:54:37 -05:00
|
|
|
class Errorlog extends LogDetails implements IWriter {
|
2023-06-28 01:53:43 -04:00
|
|
|
public function __construct(
|
|
|
|
|
SystemConfig $config,
|
|
|
|
|
protected string $tag = 'nextcloud',
|
|
|
|
|
) {
|
2022-12-05 13:54:37 -05:00
|
|
|
parent::__construct($config);
|
2022-01-19 10:15:14 -05:00
|
|
|
}
|
|
|
|
|
|
2014-11-19 14:10:48 -05:00
|
|
|
/**
|
2022-12-05 13:54:37 -05:00
|
|
|
* Write a message in the log
|
|
|
|
|
*
|
|
|
|
|
* @param string|array $message
|
2014-11-19 14:10:48 -05:00
|
|
|
*/
|
2023-06-28 01:53:43 -04:00
|
|
|
public function write(string $app, $message, int $level): void {
|
2022-12-05 13:54:37 -05:00
|
|
|
error_log('[' . $this->tag . ']['.$app.']['.$level.'] '.$this->logDetailsAsJSON($app, $message, $level));
|
2014-11-19 14:10:48 -05:00
|
|
|
}
|
|
|
|
|
}
|