]> granicus.if.org Git - icinga2/commitdiff
db_ido: Fix debug log level.
authorMichael Friedrich <michael.friedrich@netways.de>
Tue, 1 Oct 2013 11:36:15 +0000 (13:36 +0200)
committerMichael Friedrich <michael.friedrich@netways.de>
Tue, 1 Oct 2013 11:36:36 +0000 (13:36 +0200)
components/db_ido_mysql/idomysqlconnection.cpp

index 2fa8e9c3188d35f67c2a826d5e13ea4ab084157a..a5382cdc7f8a2578b8f579d20b7767c7c6df500e 100644 (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)));
        }
 }