]> git.mxchange.org Git - friendica.git/commitdiff
Remove functions
authorAdam Magness <adam.magness@gmail.com>
Mon, 29 Oct 2018 23:50:40 +0000 (19:50 -0400)
committerAdam Magness <adam.magness@gmail.com>
Tue, 30 Oct 2018 13:57:14 +0000 (09:57 -0400)
remove functions that were moved to Logger class

include/text.php

index 48351f59e9eade00da06446328528fd8e76d2b1d..aae7393122b0e9fb9018ee801402799fa772aa26 100644 (file)
@@ -381,51 +381,6 @@ function attribute_contains($attr, $s) {
        return (count($a) && in_array($s,$a));
 }
 
-
-/**
- * @brief Logs the given message at the given log level
- *
- * log levels:
- * LOGGER_WARNING
- * LOGGER_INFO (default)
- * LOGGER_TRACE
- * LOGGER_DEBUG
- * LOGGER_DATA
- * LOGGER_ALL
- *
- * @global array $LOGGER_LEVELS
- * @param string $msg
- * @param int $level
- */
-function logger($msg, $level = LOGGER_INFO)
-{
-       Logger::log($msg, $level);
-}
-
-/**
- * @brief An alternative logger for development.
- * Works largely as logger() but allows developers
- * to isolate particular elements they are targetting
- * personally without background noise
- *
- * log levels:
- * LOGGER_WARNING
- * LOGGER_INFO (default)
- * LOGGER_TRACE
- * LOGGER_DEBUG
- * LOGGER_DATA
- * LOGGER_ALL
- *
- * @global array $LOGGER_LEVELS
- * @param string $msg
- * @param int $level
- */
-function dlogger($msg, $level = LOGGER_INFO)
-{
-       Logger::devLog($msg, $level);
-}
-
-
 /**
  * Compare activity uri. Knows about activity namespace.
  *
@@ -1267,7 +1222,7 @@ function base64url_encode($s, $strip_padding = false) {
 function base64url_decode($s) {
 
        if (is_array($s)) {
-               logger('base64url_decode: illegal input: ' . print_r(debug_backtrace(), true));
+               Logger::log('base64url_decode: illegal input: ' . print_r(debug_backtrace(), true));
                return $s;
        }