Add connection label to MySQL connects

This commit is contained in:
Akkadius
2020-07-07 02:06:00 -05:00
parent b7e2261e16
commit 331eb51126
5 changed files with 9 additions and 7 deletions
+2 -1
View File
@@ -260,7 +260,8 @@ int main(int argc, char** argv) {
Config->ContentDbUsername.c_str(),
Config->ContentDbPassword.c_str(),
Config->ContentDbName.c_str(),
Config->ContentDbPort
Config->ContentDbPort,
"content"
)) {
LogError("Cannot continue without a content database connection");
return 1;