Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2484893
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/plugins/kolab_2fa/lib/Kolab2FA/Log/RcubeLogger.php b/plugins/kolab_2fa/lib/Kolab2FA/Log/RcubeLogger.php
index 1befb473..ac09df19 100644
--- a/plugins/kolab_2fa/lib/Kolab2FA/Log/RcubeLogger.php
+++ b/plugins/kolab_2fa/lib/Kolab2FA/Log/RcubeLogger.php
@@ -1,80 +1,80 @@
<?php
/**
* Kolab 2-Factor-Authentication Logging class to log messages
* through the Roundcube logging facilities.
*
* @author Thomas Bruederli <bruederli@kolabsys.com>
*
* Copyright (C) 2015, Kolab Systems AG <contact@kolabsys.com>
*
* 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 <http://www.gnu.org/licenses/>.
*/
namespace Kolab2FA\Log;
use \rcube;
class RcubeLogger implements Logger
{
protected $name = null;
protected $level = LOG_DEBUG;
public function __construct($name = null)
{
if ($name !== null) {
$this->set_name($name);
}
}
public function set_name($name)
{
$this->name = $name;
}
public function set_level($name)
{
$this->level = $level;
}
public function log($level, $message)
{
if (!is_string($message)) {
$message = var_export($message, true);
}
switch ($level) {
case LOG_DEBUG:
case LOG_INFO:
case LOG_NOTICE:
if ($level >= $this->level) {
rcube::write_log($this->name ?: 'console', $message);
}
break;
- case LOG_EMERGE:
+ case LOG_EMERG:
case LOG_ALERT:
case LOG_CRIT:
case LOG_ERR:
case LOG_WARNING:
rcube::raise_error(array(
'code' => 600,
'type' => 'php',
'message' => $message,
), true, false);
break;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Nov 20, 12:31 PM (7 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
387147
Default Alt Text
(2 KB)
Attached To
Mode
R14 roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline
Log In to Comment