Ticket #13633: 0001-add-missing-log-message-when-grabber-interrupted.patch

File 0001-add-missing-log-message-when-grabber-interrupted.patch, 936 bytes (added by Gary Buhrmaster, 4 years ago)

add-missing-log-message-when-grabber-interrupted

  • mythtv/programs/mythfilldatabase/filldata.cpp

    From 5c36be6645c2819b1310874fd82be6140c931edb Mon Sep 17 00:00:00 2001
    From: Gary Buhrmaster <gary.buhrmaster@gmail.com>
    Date: Sat, 13 Jun 2020 23:50:45 +0000
    Subject: [PATCH 1/4] add missing(?) log message when grabber interrupted
    
    ---
     mythtv/programs/mythfilldatabase/filldata.cpp | 2 ++
     1 file changed, 2 insertions(+)
    
    diff --git a/mythtv/programs/mythfilldatabase/filldata.cpp b/mythtv/programs/mythfilldatabase/filldata.cpp
    index f320857c18..db751bebf3 100644
    a b bool FillData::GrabData(const Source& source, int offset) 
    194194        {
    195195            m_interrupted = true;
    196196            status = QObject::tr("FAILED: XMLTV grabber ran but was interrupted.");
     197            LOG(VB_GENERAL, LOG_ERR,
     198                QString("XMLTV grabber ran but was interrupted."));
    197199        }
    198200        else
    199201        {