Fix debug print escape typo

master
Simon Stürz 2022-01-11 09:06:48 +01:00
parent 89d2a969ee
commit 6ccbb31acd
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ bool EnergyLogger::initDB()
}
if (!m_db.tables().contains("metadata")) {
qCDebug(dcEnergyExperience()) << "No \metadata\" table in database. Creating it.";
qCDebug(dcEnergyExperience()) << "No \"metadata\" table in database. Creating it.";
m_db.exec("CREATE TABLE metadata (version INT);");
m_db.exec("INSERT INTO metadata (version) VALUES (1);");