Skip to content
Snippets Groups Projects
Commit e69321df authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

adding configuration for logging

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@61 44740490-163a-0410-bde0-09ae8108e29a
parent 753c4dae
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,20 @@ $config = array ( ...@@ -24,6 +24,20 @@ $config = array (
*/ */
'debug' => false, 'debug' => false,
/*
* Logging.
*
* Choose a syslog facility to use for logging.
* And define the minimum log level to log
* LOG_ERR No statistics, only errors
* LOG_WARNING No statistics, only warnings/errors
* LOG_NOTICE Statistics and errors
* LOG_INFO Verbose logs
* LOG_DEBUG Full debug logs - not reccomended for production
*/
'logging.facility' => LOG_LOCAL5,
'logging.level' => LOG_NOTICE,
/* /*
* This value is the duration of the session in seconds. Make sure that the time duration of * This value is the duration of the session in seconds. Make sure that the time duration of
* cookies both at the SP and the IdP exceeds this duration. * cookies both at the SP and the IdP exceeds this duration.
......
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