Fix debug message when skipping short sessions.

The session ID is not a date on all machines.
This commit is contained in:
sawinglogz 2020-02-17 11:04:48 -05:00
parent e698879e17
commit d75a2e9fca

View File

@ -387,7 +387,7 @@ bool Machine::AddSession(Session *s)
if (session_length < ignore_sessions) {
// keep the session to save importing it again, but don't add it to the day record this time
qDebug() << s->session() << "Ignoring short session <" << ignore_sessions
<< "["+QDateTime::fromTime_t(s->session()).toString("MMM dd, yyyy hh:mm:ss")+"]";
<< "["+QDateTime::fromMSecsSinceEpoch(s->first()).toString("MMM dd, yyyy hh:mm:ss")+"]";
return true;
}