mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add some additional debug text for clarity
This commit is contained in:
parent
81eee97ec1
commit
7f3cda6893
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user