Change database creation message.

This commit is contained in:
Nicolás A. Ortega Froysa 2024-10-21 14:30:16 +02:00
parent db0b607546
commit feed35d8c8

View File

@ -42,7 +42,7 @@ void db::open(void) {
db_path += "/recipes.db";
if(not std::filesystem::exists(db_path)) {
std::cout << "Creating database: " << db_path << std::endl;
std::cout << "Creating database in " << db_path << std::endl;
new_db = true;
}