summaryrefslogtreecommitdiff
path: root/src/database/database.cpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-10-29 03:35:25 +0100
committerFlorent Le Coz <louiz@louiz.org>2015-10-29 03:35:25 +0100
commit580b721ba580d27be94b8977e8bbadf359feb2a3 (patch)
treea78c4a22216eceebc4441dd0645fc00556cc335b /src/database/database.cpp
parent9fe94215daecf21246e19ba59ef83755129a4a8b (diff)
downloadbiboumi-580b721ba580d27be94b8977e8bbadf359feb2a3.tar.gz
biboumi-580b721ba580d27be94b8977e8bbadf359feb2a3.tar.bz2
biboumi-580b721ba580d27be94b8977e8bbadf359feb2a3.tar.xz
biboumi-580b721ba580d27be94b8977e8bbadf359feb2a3.zip
Remove a write to std::cout from Database’s constructor
Diffstat (limited to 'src/database/database.cpp')
-rw-r--r--src/database/database.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/database/database.cpp b/src/database/database.cpp
index 8d09788..fd18417 100644
--- a/src/database/database.cpp
+++ b/src/database/database.cpp
@@ -17,8 +17,6 @@ db::BibouDB& Database::get_db()
{
const std::string db_filename = Config::get("db_name",
xdg_data_path("biboumi.sqlite"));
- // log_info("Opening database: " << db_filename);
- std::cout << "Opening database: " << db_filename << std::endl;
Database::db = std::make_unique<db::BibouDB>("sqlite3",
"database="s + db_filename);
}