Skip to content
Snippets Groups Projects
Unverified Commit 291e19e4 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo Committed by GitHub
Browse files

Merge pull request #1036 from ghalse/StandardErrorLoggingHandler

Allow StandardErrorLoggingHandler to be used
parents 3ba11c6c 743ebdea
No related branches found
No related tags found
No related merge requests found
......@@ -264,7 +264,7 @@ $config = [
*
* Choose logging handler.
*
* Options: [syslog,file,errorlog]
* Options: [syslog,file,errorlog,stderr]
*
*/
'logging.level' => SimpleSAML\Logger::NOTICE,
......@@ -800,7 +800,7 @@ $config = [
* \SimpleSAML\XHTML\TemplateControllerInterface interface to use it.
*/
//'theme.controller' => '',
/*
* Templating options
*
......
......@@ -356,6 +356,7 @@ class Logger
'syslog' => 'SimpleSAML\Logger\SyslogLoggingHandler',
'file' => 'SimpleSAML\Logger\FileLoggingHandler',
'errorlog' => 'SimpleSAML\Logger\ErrorLogLoggingHandler',
'stderr' => 'SimpleSAML\Logger\StandardErrorLoggingHandler',
];
// get the configuration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment