Add some additional debug text for clarity

This commit is contained in:
Phil Olynyk 2020-02-09 23:41:35 -05:00
parent 81eee97ec1
commit 7f3cda6893
2 changed files with 6 additions and 4 deletions

View File

@ -128,7 +128,8 @@ void Day::addSession(Session *s)
if (sess->session() == s->session() && sess->type() == s->type()) { if (sess->session() == s->session() && sess->type() == s->type()) {
// This usually indicates a problem in purging or cleanup somewhere, // This usually indicates a problem in purging or cleanup somewhere,
// unless there's a problem with a parser. // unless there's a problem with a parser.
qCritical() << "Day object" << this->date().toString() << "adding duplicate session" << s->session(); qCritical() << "Day object" << this->date().toString() << "adding duplicate session" << s->session()
<< "["+QDateTime::fromTime_t(s->session()).toString("MMM dd, yyyy hh:mm:ss")+"]";
// Don't skip this one, since it might have replaced the original elsewhere already. // Don't skip this one, since it might have replaced the original elsewhere already.
//return; //return;
} }

View File

@ -331,8 +331,8 @@ bool Machine::AddSession(Session *s)
int ignore_sessions = profile->session->ignoreShortSessions(); int ignore_sessions = profile->session->ignoreShortSessions();
int session_length = s->last() - s->first(); qint64 session_length = s->last() - s->first();
session_length /= 60000; session_length /= 60000L;
sessionlist[s->session()] = s; // To make sure it get's saved later even if it's not wanted. sessionlist[s->session()] = s; // To make sure it get's saved later even if it's not wanted.
@ -386,7 +386,8 @@ bool Machine::AddSession(Session *s)
if (session_length < ignore_sessions) { if (session_length < ignore_sessions) {
// keep the session to save importing it again, but don't add it to the day record this time // 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"; qDebug() << s->session() << "Ignoring short session <" << ignore_sessions
<< "["+QDateTime::fromTime_t(s->session()).toString("MMM dd, yyyy hh:mm:ss")+"]";
return true; return true;
} }