db_ido: Fix debug log level.

This commit is contained in:
Michael Friedrich 2013-10-01 13:36:15 +02:00
parent 400fe5e13c
commit 7a6139a219
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ void IdoMysqlConnection::ExecuteQuery(const DbQuery& query)
}
if (type == DbQueryInsert && query.Table == "notifications") { // FIXME remove hardcoded table name
m_LastNotificationID = GetLastInsertID();
Log(LogWarning, "db_ido", "saving contactnotification notification_id=" + Convert::ToString(static_cast<long>(m_LastNotificationID)));
Log(LogDebug, "db_ido", "saving contactnotification notification_id=" + Convert::ToString(static_cast<long>(m_LastNotificationID)));
}
}