Removed the db backend present printfs.

This commit is contained in:
Relintai 2020-12-01 14:58:04 +01:00
parent 35bd94de7e
commit be8aac25aa
1 changed files with 0 additions and 3 deletions

View File

@ -28,17 +28,14 @@
int main(int argc, char **argv) { int main(int argc, char **argv) {
#if MYSQL_PRESENT #if MYSQL_PRESENT
printf("mysql present\n");
MysqlDatabase::_register(); MysqlDatabase::_register();
#endif #endif
#if PGSQL_PRESENT #if PGSQL_PRESENT
printf("pgsql present\n");
PGSQLDatabase::_register(); PGSQLDatabase::_register();
#endif #endif
#if SQLITE_PRESENT #if SQLITE_PRESENT
printf("sqlite present\n");
SQLite3Database::_register(); SQLite3Database::_register();
#endif #endif