diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-04 22:58:40 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-04 22:58:40 +0200 |
commit | b716d035c32f5b04bfc398598ddf687a19a21c7d (patch) | |
tree | 7baa787cc122666397317e1f5bdd7182286970ba | |
parent | e03d9e3aa07300aaee5ccad0d8e2b5352d107aee (diff) | |
download | nextcloud-server-b716d035c32f5b04bfc398598ddf687a19a21c7d.tar.gz nextcloud-server-b716d035c32f5b04bfc398598ddf687a19a21c7d.zip |
fixing PHPDoc
-rw-r--r-- | lib/log/syslog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/log/syslog.php b/lib/log/syslog.php index a28255ed10e..c98deab7109 100644 --- a/lib/log/syslog.php +++ b/lib/log/syslog.php @@ -28,7 +28,7 @@ class OC_Log_Syslog { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { $minLevel = min(OC_Config::getValue("loglevel", OC_Log::WARN), OC_Log::ERROR); |