diff --git a/mythtv/programs/mythbackend/autoexpire.cpp b/mythtv/programs/mythbackend/autoexpire.cpp index 6f4ae1dbfd2..6f2f309b754 100644 --- a/mythtv/programs/mythbackend/autoexpire.cpp +++ b/mythtv/programs/mythbackend/autoexpire.cpp @@ -134,15 +134,15 @@ void AutoExpire::CalcParams() // without handling that issue too. It is done this way // because the scheduler thread can't afford to be blocked by // an unresponsive, remote filesystem and the autoexpirer - // thrad can. + // thread can. m_mainServer->GetFilesystemInfos(fsInfos, false); } m_instanceLock.unlock(); if (fsInfos.empty()) { - LOG(VB_GENERAL, LOG_ERR, LOC + "Filesystem Info cache is empty, unable " "to calculate necessary parameters."); - + LOG(VB_GENERAL, LOG_ERR, LOC + "Filesystem Info cache is empty, unable " + "to calculate necessary parameters."); return; } @@ -154,9 +154,9 @@ void AutoExpire::CalcParams() QMap fsMap; QMap > fsEncoderMap; - // we use this copying on purpose. The used_encoders map ensures + // We use this copying on purpose. The used_encoders map ensures // that every encoder writes only to one fs. - // Copying the data minimizes the time the lock is held + // Copying the data minimizes the time the lock is held. m_instanceLock.lock(); QMap::const_iterator ueit = m_usedEncoders.begin(); while (ueit != m_usedEncoders.end()) @@ -196,7 +196,7 @@ void AutoExpire::CalcParams() { // remove encoder since it can't write to any file system LOG(VB_FILE, LOG_INFO, LOC + - QString("Cardid %1: is not recoding, removing it " + QString("Cardid %1: is not recording, removing it " "from used list.").arg(cardid)); m_instanceLock.lock(); m_usedEncoders.remove(cardid); diff --git a/mythtv/programs/mythbackend/mainserver.cpp b/mythtv/programs/mythbackend/mainserver.cpp index 37e92f999a6..56dce0d70e1 100644 --- a/mythtv/programs/mythbackend/mainserver.cpp +++ b/mythtv/programs/mythbackend/mainserver.cpp @@ -3318,9 +3318,9 @@ bool MainServer::HandleAddChildInput(uint inputid) TVRec::s_inputsLock.unlock(); m_addChildInputLock.unlock(); - LOG(VB_GENERAL, LOG_ERR, LOC + + LOG(VB_GENERAL, LOG_INFO, LOC + QString("HandleAddChildInput: " - "Succesffuly handled input %1").arg(inputid)); + "Successfully handled input %1").arg(inputid)); return true; }