N°4415 - Remove SetupPage:log*

This commit is contained in:
Molkobain
2022-01-27 17:37:14 +01:00
parent 3d3d94e837
commit 22f9d16743

View File

@@ -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
*/