mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-04 20:27:31 +02:00
[fix] change private vars to protected
This commit is contained in:
committed by
Jordi Boggiano
parent
916b034b2b
commit
e11012dfde
@@ -27,7 +27,7 @@ class RavenHandler extends AbstractProcessingHandler
|
|||||||
/**
|
/**
|
||||||
* Translates Monolog log levels to Raven log levels.
|
* Translates Monolog log levels to Raven log levels.
|
||||||
*/
|
*/
|
||||||
private $logLevels = array(
|
protected $logLevels = array(
|
||||||
Logger::DEBUG => Raven_Client::DEBUG,
|
Logger::DEBUG => Raven_Client::DEBUG,
|
||||||
Logger::INFO => Raven_Client::INFO,
|
Logger::INFO => Raven_Client::INFO,
|
||||||
Logger::NOTICE => Raven_Client::INFO,
|
Logger::NOTICE => Raven_Client::INFO,
|
||||||
@@ -42,7 +42,7 @@ class RavenHandler extends AbstractProcessingHandler
|
|||||||
* @var string should represent the current version of the calling
|
* @var string should represent the current version of the calling
|
||||||
* software. Can be any string (git commit, version number)
|
* software. Can be any string (git commit, version number)
|
||||||
*/
|
*/
|
||||||
private $release;
|
protected $release;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Raven_Client the client object that sends the message to the server
|
* @var Raven_Client the client object that sends the message to the server
|
||||||
|
Reference in New Issue
Block a user