Method info on profiler
This commit is contained in:
@ -84,7 +84,7 @@ class MySQLiStatement extends DbStatement
|
|||||||
*/
|
*/
|
||||||
$mysqli = $this->driver->getConnection();
|
$mysqli = $this->driver->getConnection();
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
$profiler = Profiler::getInstance()->profilerCommand('mysql', $sql);
|
$profiler = Profiler::getInstance()->profilerCommand('MySQL', $sql);
|
||||||
$result = $mysqli->query($sql);
|
$result = $mysqli->query($sql);
|
||||||
$profiler->end();
|
$profiler->end();
|
||||||
} else {
|
} else {
|
||||||
|
@ -23,8 +23,8 @@ class RedisDebug
|
|||||||
|
|
||||||
public function __call($name, $arguments)
|
public function __call($name, $arguments)
|
||||||
{
|
{
|
||||||
$command = $name . '(' . $this->r_implode(', ', $arguments) . ')';
|
$command = $this->r_implode(', ', $arguments);
|
||||||
$profiler = Profiler::getInstance()->profilerCommand('redis', $command);
|
$profiler = Profiler::getInstance()->profilerCommand('Redis->' . $name, $command);
|
||||||
$data = call_user_func_array(array($this->redis, $name), $arguments);
|
$data = call_user_func_array(array($this->redis, $name), $arguments);
|
||||||
$profiler->end();
|
$profiler->end();
|
||||||
return $data;
|
return $data;
|
||||||
|
Reference in New Issue
Block a user