diff options
author | Jaime Perez Crespo <jaime.perez@uninett.no> | 2016-03-31 14:37:15 +0200 |
---|---|---|
committer | Jaime Perez Crespo <jaime.perez@uninett.no> | 2016-03-31 14:37:15 +0200 |
commit | bfe70e3f2775a53e86868b8f3335587758bebebf (patch) | |
tree | 9d65f3bde7cdaef5f233ce167ff3608933873897 /lib/SimpleSAML | |
parent | 6a871971291628a1eb1eee79b726d9051e69b2fa (diff) | |
download | simplesamlphp-bfe70e3f2775a53e86868b8f3335587758bebebf.zip simplesamlphp-bfe70e3f2775a53e86868b8f3335587758bebebf.tar.gz simplesamlphp-bfe70e3f2775a53e86868b8f3335587758bebebf.tar.bz2 |
Make SimpleSAML_Logger_LoggingHandlerFile::$logFile protected instead of private.
Diffstat (limited to 'lib/SimpleSAML')
-rw-r--r-- | lib/SimpleSAML/Logger/LoggingHandlerFile.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/SimpleSAML/Logger/LoggingHandlerFile.php b/lib/SimpleSAML/Logger/LoggingHandlerFile.php index b09993c..8bb64de 100644 --- a/lib/SimpleSAML/Logger/LoggingHandlerFile.php +++ b/lib/SimpleSAML/Logger/LoggingHandlerFile.php @@ -11,6 +11,14 @@ 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 * more or less directly from SimpleSAML_Logger_LoggingHandlerErrorLog. @@ -25,7 +33,6 @@ class SimpleSAML_Logger_LoggingHandlerFile implements SimpleSAML_Logger_LoggingH SimpleSAML\Logger::INFO => 'INFO', SimpleSAML\Logger::DEBUG => 'DEBUG', ); - private $logFile = NULL; private $processname = NULL; private $format; |