]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Logger.php
Merge pull request #10446 from MrPetovan/bug/10439-addon-settings-forms
[friendica.git] / src / Core / Logger.php
index 0ce2a6e675a2e6cdf3c91d48aac1e18f292229bc..6dde142cc953f3feae67ec1c39d1d882d009909d 100644 (file)
@@ -1,7 +1,24 @@
 <?php
 /**
- * @file src/Core/Logger.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Core;
 
 use Friendica\DI;
@@ -10,32 +27,38 @@ use Psr\Log\LoggerInterface;
 use Psr\Log\LogLevel;
 
 /**
- * @brief Logger functions
+ * Logger functions
  */
 class Logger
 {
        /**
         * @see Logger::error()
+        * @deprecated since 2019.01
         */
        const WARNING = LogLevel::ERROR;
        /**
         * @see Logger::warning()
+        * @deprecated since 2019.01
         */
        const INFO = LogLevel::WARNING;
        /**
         * @see Logger::notice()
+        * @deprecated since 2019.01
         */
        const TRACE = LogLevel::NOTICE;
        /**
         * @see Logger::info()
+        * @deprecated since 2019.01
         */
        const DEBUG = LogLevel::INFO;
        /**
         * @see Logger::debug()
+        * @deprecated since 2019.01
         */
        const DATA = LogLevel::DEBUG;
        /**
         * @see Logger::debug()
+        * @deprecated since 2019.01
         */
        const ALL = LogLevel::DEBUG;
 
@@ -231,8 +254,8 @@ class Logger
                self::getWorker()->debug($message, $context);
        }
 
-           /**
-        * @brief Logs the given message at the given log level
+       /**
+        * Logs the given message at the given log level
         *
         * @param string $msg
         * @param string $level
@@ -246,7 +269,8 @@ class Logger
        }
 
        /**
-        * @brief An alternative logger for development.
+        * An alternative logger for development.
+        *
         * Works largely as log() but allows developers
         * to isolate particular elements they are targetting
         * personally without background noise