From 6ccbb31acd9df56b4314b81ef37aa48e5eeb211d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Tue, 11 Jan 2022 09:06:48 +0100 Subject: [PATCH] Fix debug print escape typo --- plugin/energylogger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/energylogger.cpp b/plugin/energylogger.cpp index 6ddfff6..9d40969 100644 --- a/plugin/energylogger.cpp +++ b/plugin/energylogger.cpp @@ -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);");