File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -571,6 +571,7 @@ boost::property_tree::ptree CcdbDatabase::getListingAsPtree(const std::string& p
571571 try {
572572 boost::property_tree::read_json (listingAsStringStream, listingAsTree);
573573 } catch (const boost::property_tree::json_parser::json_parser_error&) {
574+ ILOG (Error, Support) << " Failed to parse json in CcdbDatabase::getListingAsPtree from data: " << listingAsStringStream.str () << ENDM;
574575 }
575576
576577 return listingAsTree;
@@ -623,6 +624,7 @@ std::vector<std::string> CcdbDatabase::getPublishedObjectNames(std::string taskN
623624 try {
624625 boost::property_tree::read_json (ss, pt);
625626 } catch (const boost::property_tree::json_parser::json_parser_error&) {
627+ ILOG (Error, Support) << " Failed to parse json in CcdbDatabase::getTimestampsForObject from data: " << ss.str () << ENDM;
626628 }
627629
628630 BOOST_FOREACH (boost::property_tree::ptree::value_type& v, pt.get_child (" objects" )) {
You can’t perform that action at this time.
0 commit comments