mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 08:01:13 +02:00
2023-01-24 Fred Gleason <fredg@paravelsystems.com>
* Added more detail to data transfer errors generated by the podcasting subsystem. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -172,7 +172,7 @@ void MainObject::ProcessFeed(const QString &key_name)
|
||||
q->value(0).toUInt());
|
||||
deleted=true;
|
||||
}
|
||||
if(feed->postXml()) {
|
||||
if(feed->postXml(&err_msg)) {
|
||||
rda->syslog(LOG_DEBUG,
|
||||
"repost of XML for feed \"%s\" triggered by cast id %u",
|
||||
key_name.toUtf8().constData(),q->value(0).toUInt());
|
||||
@@ -186,9 +186,11 @@ void MainObject::ProcessFeed(const QString &key_name)
|
||||
}
|
||||
}
|
||||
else {
|
||||
rda->syslog(LOG_WARNING,
|
||||
"repost of XML for feed \"%s\" triggered by cast id %u failed",
|
||||
key_name.toUtf8().constData(),q->value(0).toUInt());
|
||||
rda->
|
||||
syslog(LOG_WARNING,
|
||||
"repost of XML for feed \"%s\" triggered by cast id %u failed [%s]",
|
||||
key_name.toUtf8().constData(),q->value(0).toUInt(),
|
||||
err_msg.toUtf8().constData());
|
||||
}
|
||||
}
|
||||
delete q;
|
||||
|
Reference in New Issue
Block a user