core: move message() method to parent class BridgeAbstract
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
3c0d13c1bb
commit
d74beb6c6a
1 changed files with 13 additions and 9 deletions
|
@ -105,6 +105,18 @@ abstract class BridgeAbstract implements BridgeInterface{
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function message($text) {
|
||||
if(!file_exists('DEBUG')){
|
||||
return;
|
||||
}
|
||||
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3);
|
||||
$calling = $backtrace[2];
|
||||
$message = $calling["file"].":".$calling["line"]
|
||||
." class ".get_class($this)."->".$calling["function"]
|
||||
." - ".$text;
|
||||
error_log($message);
|
||||
}
|
||||
|
||||
protected function getContents($url,$use_include_path=false,$context=null,$offset=0,$maxlen=null){
|
||||
$contextOptions = array(
|
||||
'http' => array(
|
||||
|
@ -234,14 +246,6 @@ abstract class HttpCachingBridgeAbstract extends BridgeAbstract {
|
|||
// unlink($filename);
|
||||
}
|
||||
|
||||
public function message($text) {
|
||||
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3);
|
||||
$calling = $backtrace[2];
|
||||
$message = $calling["file"].":".$calling["line"]
|
||||
." class ".get_class($this)."->".$calling["function"]
|
||||
." - ".$text;
|
||||
error_log($message);
|
||||
}
|
||||
}
|
||||
|
||||
class Bridge{
|
||||
|
|
Loading…
Reference in a new issue