Add guid of already posted items to debug output.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
tastytea 2020-01-01 13:44:54 +01:00
parent 0eb103fb8e
commit 145a97bb38
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07

View File

@ -165,7 +165,8 @@ void Document::parse_rss(const pt::ptree &tree)
[&](const auto &old_guid) [&](const auto &old_guid)
{ return guid == old_guid; })) { return guid == old_guid; }))
{ {
BOOST_LOG_TRIVIAL(debug) << "Found already posted GUID."; BOOST_LOG_TRIVIAL(debug) << "Found already posted GUID: "
<< guid;
if (_profiledata.keep_looking) if (_profiledata.keep_looking)
{ {
continue; continue;