]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix logging level in log msg
authorZach Copley <zach@status.net>
Sat, 27 Aug 2011 19:42:09 +0000 (12:42 -0700)
committerZach Copley <zach@status.net>
Sat, 27 Aug 2011 19:42:09 +0000 (12:42 -0700)
classes/User.php

index 93340f021def182f96c3a49a7459588ef62bed1e..7289a17b69ee95d893d29f5545ce078db6710ca8 100644 (file)
@@ -981,7 +981,7 @@ class User extends Managed_DataObject
             return $user->nickname;
         } catch (Exception $e) {
             if (common_config('singleuser', 'enabled') && common_config('singleuser', 'nickname')) {
-                common_log(LOG_WARN, "Warning: code attempting to pull single-user nickname when the account does not exist. If this is not setup time, this is probably a bug.");
+                common_log(LOG_WARNING, "Warning: code attempting to pull single-user nickname when the account does not exist. If this is not setup time, this is probably a bug.");
                 return common_config('singleuser', 'nickname');
             }
             throw $e;