From 145a97bb386d0fe44233689e5b92e97ed9b9a359 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 1 Jan 2020 13:44:54 +0100 Subject: [PATCH] Add guid of already posted items to debug output. --- src/document.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/document.cpp b/src/document.cpp index 3f936ea..275a27a 100644 --- a/src/document.cpp +++ b/src/document.cpp @@ -165,7 +165,8 @@ void Document::parse_rss(const pt::ptree &tree) [&](const auto &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) { continue;