Improve diagnostics messages and yet another check for the phantom date

This commit is contained in:
Seeker4 2019-09-16 12:01:30 -07:00
parent 1548a215f6
commit dcf68dac37

View File

@ -286,7 +286,16 @@ bool Machine::AddSession(Session *s)
return false;
}
if (sessionlist.contains(s->session())) {
qCritical() << "Machine::AddSession called with duplicate session" << s->session() << "for machine" << serial();
qCritical() << "Machine::AddSession called with duplicate session" << s->session()
<< "["+QDateTime::fromTime_t(s->session()).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "for machine" << serial();
return false;
}
if (s->first() == 0) {
qWarning() << "Machine::AddSession called with session" << s->session()
<< "["+QDateTime::fromTime_t(s->session()).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "with first=0";
return false;
}
@ -298,7 +307,6 @@ bool Machine::AddSession(Session *s)
}
}
updateChannels(s);
if (s->session() > highest_sessionid) {