MCPcopy Create free account
hub / github.com/JosephP91/curlcpp / print_traceback

Method print_traceback

include/curl_exception.h:104–112  ·  view source on GitHub ↗

Implementation of print_traceback

Source from the content-addressed store, hash-verified

102
103 // Implementation of print_traceback
104 inline void curl_exception::print_traceback() {
105 curl_exception::tracebackLocker.lock();
106 std::for_each(curl_exception::traceback.begin(),curl_exception::traceback.end(),
107 [](const curlcpp_traceback_object &value) {
108
109 std::cout<<"ERROR: "<<value.first<<" ::::: FUNCTION: "<<value.second<<std::endl;
110 });
111 curl_exception::tracebackLocker.unlock();
112 }
113
114 // Implementation of clear method.
115 inline void curl_exception::clear_traceback() {

Callers 6

mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected