Skip to content
Snippets Groups Projects
Commit 8b07aa36 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: log must be before request

parent eb541cea
Branches main
No related tags found
No related merge requests found
...@@ -809,8 +809,8 @@ class DoliDBMysql ...@@ -809,8 +809,8 @@ class DoliDBMysql
{ {
// We try again for compatibility with Mysql < 4.1.1 // We try again for compatibility with Mysql < 4.1.1
$sql = 'CREATE DATABASE '.$database; $sql = 'CREATE DATABASE '.$database;
$ret=$this->query($sql);
dol_syslog($sql,LOG_DEBUG); dol_syslog($sql,LOG_DEBUG);
$ret=$this->query($sql);
} }
return $ret; return $ret;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment