From 22f9d167436952c550f91060070106cb48096fe0 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Thu, 27 Jan 2022 17:37:14 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B04415=20-=20Remove=20SetupPage:log*?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/setuppage.class.inc.php | 45 ----------------------------------- 1 file changed, 45 deletions(-) diff --git a/setup/setuppage.class.inc.php b/setup/setuppage.class.inc.php index e89d85087..a1603323f 100644 --- a/setup/setuppage.class.inc.php +++ b/setup/setuppage.class.inc.php @@ -172,51 +172,6 @@ class SetupPage extends NiceWebPage return parent::output(); } - /** - * @deprecated 3.0.0 use SetupLog::Error - */ - public static function log_error($sText) - { - DeprecatedCallsLog::NotifyDeprecatedPhpMethod('use SetupLog::Error'); - SetupLog::Error($sText); - } - - /** - * @deprecated 3.0.0 use SetupLog::Warning - */ - public static function log_warning($sText) - { - DeprecatedCallsLog::NotifyDeprecatedPhpMethod('use SetupLog::Warning'); - SetupLog::Warning($sText); - } - - /** - * @deprecated 3.0.0 use SetupLog::Info - */ - public static function log_info($sText) - { - DeprecatedCallsLog::NotifyDeprecatedPhpMethod('use SetupLog::Info'); - SetupLog::Info($sText); - } - - /** - * @deprecated 3.0.0 use SetupLog::Ok - */ - public static function log_ok($sText) - { - DeprecatedCallsLog::NotifyDeprecatedPhpMethod('use SetupLog::Ok'); - SetupLog::Ok($sText); - } - - /** - * @deprecated 3.0.0 use SetupLog::Ok - */ - public static function log($sText) - { - DeprecatedCallsLog::NotifyDeprecatedPhpMethod('use SetupLog::Ok'); - SetupLog::Ok($sText); - } - /** * @inheritDoc */