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) {
#if MYSQL_PRESENT
printf("mysql present\n");
MysqlDatabase::_register();
#endif
#if PGSQL_PRESENT
printf("pgsql present\n");
PGSQLDatabase::_register();
#endif
#if SQLITE_PRESENT
printf("sqlite present\n");
SQLite3Database::_register();
#endif