waza-ari / monolog-mysql

MySQL Handler for Monolog, which allows to store log messages to a MySQL Table
MIT License
141 stars 85 forks source link

Wrong quotation in query ? #1

Closed pwojcieszuk closed 9 years ago

pwojcieszuk commented 10 years ago

https://github.com/waza-ari/monolog-mysql/blob/master/src/MySQLHandler/MySQLHandler.php#L74

Seems

$q = $this->pdo->prepare("DESCRIBE `'.$this->table.'`;");

should be

$q = $this->pdo->prepare('DESCRIBE `'.$this->table.'`;');
waza-ari commented 9 years ago

Thanks for your information, I fixed it with the latest commit.