[DBAL-134] Doctrine\DBAL\Connection::query() no logging Created: 24/Jun/11 Updated: 28/Jun/11 Resolved: 28/Jun/11 |
|
| Status: | Resolved |
| Project: | Doctrine DBAL |
| Component/s: | None |
| Affects Version/s: | 2.0.6 |
| Fix Version/s: | 2.0.7, 2.1 |
| Type: | Bug | Priority: | Major |
| Reporter: | Kirill chEbba Chebunin | Assignee: | Benjamin Eberlei |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Doctrine\DBAL\Connection::query() does not use SqlLogger. I guess it may be fixed like this: public function query() { $this->connect(); $args = func_get_args(); $logger = $this->getConfiguration()->getSQLLogger(); if ($logger) { $logger->startQuery($args[0]); } $statement = call_user_func_array(array($this->_conn, 'query'), $args); if ($logger) { $logger->stopQuery(); } return $statement; } |
| Comments |
| Comment by Benjamin Eberlei [ 28/Jun/11 ] |
|
Fixed |