From a30aa740993cf5cfd98f6c3aad5a3b2e135a5e83 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Mon, 24 Jun 2019 10:08:53 -0700 Subject: [PATCH] Improve qWarning message to show timestamps causing the warning. --- oscar/SleepLib/session.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/SleepLib/session.h b/oscar/SleepLib/session.h index 79ef360d..d0d35f84 100644 --- a/oscar/SleepLib/session.h +++ b/oscar/SleepLib/session.h @@ -170,7 +170,7 @@ class Session //! \brief Set last time to higher of 'd' and existing s_last. Throw warning if 'd' less than s_first. void set_last(qint64 d) { if (d <= s_first) { - qWarning() << s_session << "Session::set_last() d<=s_first"; + qWarning() << s_session << "Session::set_last() d<=s_first, d" << d << "s_first" << s_first; return; }