diff --git a/src/API/PluginAPI.php b/src/API/PluginAPI.php index 59707092e..3993f6180 100644 --- a/src/API/PluginAPI.php +++ b/src/API/PluginAPI.php @@ -85,7 +85,7 @@ class PluginAPI extends stdClass{ return false; } if(eval($info["code"]) === false or ($info["class"] !== "none" and !class_exists($info["class"]))){ - console("[ERROR] Failed loading plugin: evaluation error"); + console("[ERROR] Failed loading {$info['name']}: evaluation error"); return false; } @@ -205,4 +205,4 @@ class DummyPlugin implements Plugin{ public function __destruct(){ } -} \ No newline at end of file +}