mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 12:18:46 +00:00
Fixed not being able to remove logger attachments, closes #1141
This commit is contained in:
parent
b310959fd1
commit
2215543e39
@ -123,6 +123,13 @@ namespace pocketmine {
|
||||
define('pocketmine\PATH', realpath(getcwd()) . DIRECTORY_SEPARATOR);
|
||||
}
|
||||
|
||||
$requiredSplVer = "0.0.1";
|
||||
if(!is_file(\pocketmine\PATH . "src/spl/version.php") or version_compare($requiredSplVer, require(\pocketmine\PATH . "src/spl/version.php")) > 0){
|
||||
echo "[CRITICAL] Incompatible PocketMine-SPL submodule version ($requiredSplVer is required)." . PHP_EOL;
|
||||
echo "[CRITICAL] Please update your submodules or use provided builds." . PHP_EOL;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if(!class_exists("ClassLoader", false)){
|
||||
if(!is_file(\pocketmine\PATH . "src/spl/ClassLoader.php")){
|
||||
echo "[CRITICAL] Unable to find the PocketMine-SPL library." . PHP_EOL;
|
||||
|
@ -47,6 +47,7 @@ class MainLogger extends \AttachableThreadedLogger{
|
||||
* @throws \RuntimeException
|
||||
*/
|
||||
public function __construct(string $logFile, bool $logDebug = false){
|
||||
parent::__construct();
|
||||
if(static::$logger instanceof MainLogger){
|
||||
throw new \RuntimeException("MainLogger has been already created");
|
||||
}
|
||||
@ -214,8 +215,10 @@ class MainLogger extends \AttachableThreadedLogger{
|
||||
echo $message . PHP_EOL;
|
||||
}
|
||||
|
||||
if($this->attachment instanceof \ThreadedLoggerAttachment){
|
||||
$this->attachment->call($level, $message);
|
||||
foreach($this->attachments as $attachment){
|
||||
if($attachment instanceof \ThreadedLoggerAttachment){
|
||||
$attachment->call($level, $message);
|
||||
}
|
||||
}
|
||||
|
||||
$this->logStream[] = date("Y-m-d", $now) . " " . $cleanMessage . PHP_EOL;
|
||||
|
2
src/spl
2
src/spl
@ -1 +1 @@
|
||||
Subproject commit a5127b224ec35ef6f54d0eae2a69a02d53842640
|
||||
Subproject commit c4d4841586a19d95f25cc02b23baa00dbbc0b0d7
|
Loading…
x
Reference in New Issue
Block a user