2014-11-19 22:10:48 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* The MIT License (MIT)
|
2014-11-19 22:10:48 +03:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* Copyright (c) 2014 Christian Kampka <christian@kampka.net>
|
2014-11-19 22:10:48 +03:00
|
|
|
*
|
2015-02-26 13:37:37 +03: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 22:10:48 +03:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2014-11-19 22:10:48 +03:00
|
|
|
*
|
2015-02-26 13:37:37 +03: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 22:10:48 +03:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-02 15:04:58 +03:00
|
|
|
namespace OC\Log;
|
|
|
|
|
2018-04-25 03:27:43 +03:00
|
|
|
use OCP\Log\IWriter;
|
|
|
|
|
|
|
|
class Errorlog implements IWriter {
|
2014-11-19 22:10:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* write a message in the log
|
|
|
|
* @param string $app
|
|
|
|
* @param string $message
|
|
|
|
* @param int $level
|
|
|
|
*/
|
2018-04-25 03:27:43 +03:00
|
|
|
public function write(string $app, $message, int $level) {
|
2015-04-30 13:06:52 +03:00
|
|
|
error_log('[owncloud]['.$app.']['.$level.'] '.$message);
|
2014-11-19 22:10:48 +03:00
|
|
|
}
|
|
|
|
}
|