diff options
Diffstat (limited to 'lib/SimpleSAML/Logger')
-rw-r--r-- | lib/SimpleSAML/Logger/LoggingHandlerFile.php | 9 | ||||
-rw-r--r-- | lib/SimpleSAML/Logger/LoggingHandlerSyslog.php | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/lib/SimpleSAML/Logger/LoggingHandlerFile.php b/lib/SimpleSAML/Logger/LoggingHandlerFile.php index dd77cd6..b0239ef 100644 --- a/lib/SimpleSAML/Logger/LoggingHandlerFile.php +++ b/lib/SimpleSAML/Logger/LoggingHandlerFile.php @@ -3,6 +3,15 @@ require_once('SimpleSAML/Configuration.php'); require_once('SimpleSAML/Logger.php'); +/** + * A class for logging + * + * @author Lasse Birnbaum Jensen, SDU. + * @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no> + * @package simpleSAMLphp + * @version $ID$ + */ + class SimpleSAML_Logger_LoggingHandlerFile implements SimpleSAML_Logger_LoggingHandler { private $logFile = null; diff --git a/lib/SimpleSAML/Logger/LoggingHandlerSyslog.php b/lib/SimpleSAML/Logger/LoggingHandlerSyslog.php index 4ad3130..a897b91 100644 --- a/lib/SimpleSAML/Logger/LoggingHandlerSyslog.php +++ b/lib/SimpleSAML/Logger/LoggingHandlerSyslog.php @@ -3,6 +3,15 @@ require_once('SimpleSAML/Configuration.php'); require_once('SimpleSAML/Logger.php'); +/** + * A class for logging + * + * @author Lasse Birnbaum Jensen, SDU. + * @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no> + * @package simpleSAMLphp + * @version $ID$ + */ + class SimpleSAML_Logger_LoggingHandlerSyslog implements SimpleSAML_Logger_LoggingHandler { function __construct() { |