ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
SimpleSAML\Logger\StandardErrorLoggingHandler Class Reference
+ Inheritance diagram for SimpleSAML\Logger\StandardErrorLoggingHandler:
+ Collaboration diagram for SimpleSAML\Logger\StandardErrorLoggingHandler:

Public Member Functions

 __construct (\SimpleSAML_Configuration $config)
 StandardError constructor. More...
 
- Public Member Functions inherited from SimpleSAML\Logger\FileLoggingHandler
 __construct (\SimpleSAML_Configuration $config)
 Build a new logging handler based on files. More...
 
 setLogFormat ($format)
 Set the format desired for the logs. More...
 
 log ($level, $string)
 Log a message to the log file. More...
 

Additional Inherited Members

- Protected Attributes inherited from SimpleSAML\Logger\FileLoggingHandler
 $logFile = null
 
 $processname = null
 
 $format
 

Detailed Description

Definition at line 11 of file StandardErrorLoggingHandler.php.

Constructor & Destructor Documentation

◆ __construct()

SimpleSAML\Logger\StandardErrorLoggingHandler::__construct ( \SimpleSAML_Configuration  $config)

StandardError constructor.

It runs the parent constructor and sets the log file to be the standard error descriptor.

Implements SimpleSAML\Logger\LoggingHandlerInterface.

Definition at line 19 of file StandardErrorLoggingHandler.php.

References SimpleSAML_Configuration\getString().

20  {
21  $this->processname = $config->getString('logging.processname', 'SimpleSAMLphp');
22  $this->logFile = 'php://stderr';
23  }
$config
Definition: bootstrap.php:15
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: