Any chance of making using a Psr\Log\LoggerInterface logger possible?
As I see it the simplest [non-breaking-change] way would be by allowing class fmRESTor to be extended by a class that replaces its function log like so:
private function log($log) => protected function log($log)
Some parameters should also be made accessible to the replacing function log:
private $logType; => protected $logType;
private $token; => protected $token;
private $rowNumber; => protected $rowNumber;
Thanks
Any chance of making using a Psr\Log\LoggerInterface logger possible?
As I see it the simplest [non-breaking-change] way would be by allowing
class fmRESTorto be extended by a class that replaces itsfunction loglike so:private function log($log)=>protected function log($log)Some parameters should also be made accessible to the replacing
function log:private $logType;=>protected $logType;private $token;=>protected $token;private $rowNumber;=>protected $rowNumber;Thanks