Removed extraneous logbook debug statements

This commit is contained in:
Jordan Sherer 2019-03-23 11:42:31 -04:00
parent 5ef440faf6
commit d8a16f4a42

View File

@ -83,13 +83,11 @@ bool LogBook::findCallDetails(
QString &name, QString &name,
QString &comment) const QString &comment) const
{ {
qDebug() << "looking for call" << call;
if(call.isEmpty()){ if(call.isEmpty()){
return false; return false;
} }
auto qsos = _log.find(call); auto qsos = _log.find(call);
qDebug() << "found" << qsos.length() << "qsos for call" << call;
if(qsos.isEmpty()){ if(qsos.isEmpty()){
return false; return false;
} }