here's
use a wrapper class. this method which doesn't require you has the following benefits:
- no need to change your underlying classes (well beyond removing the class structure / method signatures
- change logginginfo you might currently have):? just update this classTestClass { public function methodOne() {} public function methodTwo() {} }
- update object calls vs inserting code into every class you want to log
.
class LogWatch {
function __construct($class) {
$this->obj = $class;
}
function __call($method, $args) {
$this->methods = get_class_methods($this->obj);
if (in_array($method, $this->methods) get_class_methods($this->obj) ) ) {
Logger::logEntry();
Logger::info('Parameter '.implode(', ', $args) );
call_user_func_array(array($this->obj, $method), $args);
Logger::logExit();
} else {
throw new BadMethodCallException();
}
}
}
usage:$test = new LogWatch(new TestClass() );
$test->methodOne();
>tester();
// you can use instances of LogWatch()`LogWatch()` just like your watched class
, // including passing appropriate params:
$test->methodOne($param1, >tester($param1, $param2);
and it'll call the method with appropriate params.
