aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-09-26 12:09:21 +0200
committerGitHub <noreply@github.com>2023-09-26 12:09:21 +0200
commit3a56ecc8cb6556372d7615679f0ec84bc95e8af5 (patch)
tree1b0469ec77c8acfbf3d9bfe12972d72c91546b75 /lib/public
parentf18e73137c6112ac81b151c0670333aec88bf2ed (diff)
parentf68d4f7300af493d52c85a36561551ca6d6e63de (diff)
downloadnextcloud-server-3a56ecc8cb6556372d7615679f0ec84bc95e8af5.tar.gz
nextcloud-server-3a56ecc8cb6556372d7615679f0ec84bc95e8af5.zip
Merge pull request #40565 from nextcloud/fix/remove-writelog
Remove deprecated methods Util::writeLog and DIContainer::log
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/Util.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php
index 781aa87d66b..cabb84c0cf6 100644
--- a/lib/public/Util.php
+++ b/lib/public/Util.php
@@ -105,19 +105,6 @@ class Util {
}
/**
- * write a message in the log
- * @param string $app
- * @param string $message
- * @param int $level
- * @since 4.0.0
- * @deprecated 13.0.0 use log of \OCP\ILogger
- */
- public static function writeLog($app, $message, $level) {
- $context = ['app' => $app];
- \OC::$server->getLogger()->log($level, $message, $context);
- }
-
- /**
* check if sharing is disabled for the current user
*
* @return boolean