]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix usage of non existent consts
authorBart Visscher <bartv@thisnet.nl>
Fri, 28 Jun 2013 09:15:08 +0000 (11:15 +0200)
committerBart Visscher <bartv@thisnet.nl>
Fri, 28 Jun 2013 09:15:25 +0000 (11:15 +0200)
lib/log.php

index 8c157d003cf628fcf01fa3bef103877883085669..e0b9fe3c696a85e72c2ae02e76251921703c9d69 100644 (file)
@@ -41,7 +41,7 @@ class Log {
         * @param array $context
         */
        public function alert($message, array $context = array()) {
-               $this->log(self::ALERT, $message, $context);
+               $this->log(\OC_Log::ERROR, $message, $context);
        }
 
        /**
@@ -53,7 +53,7 @@ class Log {
         * @param array $context
         */
        public function critical($message, array $context = array()) {
-               $this->log(self::CRITICAL, $message, $context);
+               $this->log(\OC_Log::ERROR, $message, $context);
        }
 
        /**
@@ -87,7 +87,7 @@ class Log {
         * @param array $context
         */
        public function notice($message, array $context = array()) {
-               $this->log(self::NOTICE, $message, $context);
+               $this->log(\OC_Log::INFO, $message, $context);
        }
 
        /**