Skip to content
Snippets Groups Projects
Commit bfe70e3f authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Make SimpleSAML_Logger_LoggingHandlerFile::$logFile protected instead of private.

parent 6a871971
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,14 @@ ...@@ -11,6 +11,14 @@
class SimpleSAML_Logger_LoggingHandlerFile implements SimpleSAML_Logger_LoggingHandler class SimpleSAML_Logger_LoggingHandlerFile implements SimpleSAML_Logger_LoggingHandler
{ {
/**
* A string with the path to the file where we should log our messages.
*
* @var null|string
*/
protected $logFile = NULL;
/** /**
* This array contains the mappings from syslog loglevel to names. Copied * This array contains the mappings from syslog loglevel to names. Copied
* more or less directly from SimpleSAML_Logger_LoggingHandlerErrorLog. * more or less directly from SimpleSAML_Logger_LoggingHandlerErrorLog.
...@@ -25,7 +33,6 @@ class SimpleSAML_Logger_LoggingHandlerFile implements SimpleSAML_Logger_LoggingH ...@@ -25,7 +33,6 @@ class SimpleSAML_Logger_LoggingHandlerFile implements SimpleSAML_Logger_LoggingH
SimpleSAML\Logger::INFO => 'INFO', SimpleSAML\Logger::INFO => 'INFO',
SimpleSAML\Logger::DEBUG => 'DEBUG', SimpleSAML\Logger::DEBUG => 'DEBUG',
); );
private $logFile = NULL;
private $processname = NULL; private $processname = NULL;
private $format; private $format;
......
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