/libraries/Steam/Log/Writer/PHP.php
https://gitlab.com/braydon/wordpress-steam-framework · PHP · 43 lines · 13 code · 2 blank · 28 comment · 1 complexity · c92cbad488b5828ad13b6b96d05d2e1e MD5 · raw file
- <?php
- /**
- * PHP Log Writer
- *
- * This class allows errors to be logged through PHP's default facility.
- *
- * Copyright 2008-2009 Shaddy Zeineddine
- *
- * This file is part of Steam, a PHP application framework.
- *
- * Steam is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * Steam 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Frameworks
- * @package Steam
- * @copyright 2008-2009 Shaddy Zeineddine
- * @license http://www.gnu.org/licenses/gpl.txt GPL v3 or later
- * @link http://code.google.com/p/steam-fw
- */
- namespace Steam\Log\Writer;
- class PHP extends \Zend_Log_Writer_Abstract
- {
- protected function _write($event)
- {
- if (false === @error_log($event['message']))
- {
- throw new \Zend_Log_Exception("Unable to log using PHP's default logging facility.");
- }
- }
- }