Skip to content

Commit

Permalink
ci-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Oct 28, 2024
1 parent 1e9e736 commit f02b342
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cpp/include/kvikio/shim/libcurl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ class CurlHandle {
private:
char _errbuf[CURL_ERROR_SIZE];
LibCurl::UniqueHandlePtr _handle;
std::string _source_file;
std::string _source_line;
std::string const _source_file;
std::string const _source_line;

public:
/**
Expand Down Expand Up @@ -224,6 +224,9 @@ class CurlHandle {
} else {
ss << "(" << msg << ")";
}

std::cout << "perform-source-file: " << _source_file << std::endl;
std::cout << "perform-error-msg: " << ss.str() << std::endl;
throw std::runtime_error(ss.str());
}
}
Expand Down

0 comments on commit f02b342

Please sign in to comment.