Skip to content

Commit

Permalink
format message a little better
Browse files Browse the repository at this point in the history
  • Loading branch information
dpriedel committed Jul 26, 2017
1 parent 57401f4 commit d9242cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HTTPS_Downloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ std::pair<int, int> HTTPS_Downloader::DownloadFilesConcurrently(const remote_loc

poco_error(the_logger_, e.what());
auto ec = e.code();
poco_error(the_logger_, std::string{"category: "} + ec.category().name() + " value: " + std::to_string(ec.value()) + " message: " + ec.message());
poco_error(the_logger_, std::string{"Category: "} + ec.category().name() + ". Value: " + std::to_string(ec.value()) + ". Message: " + ec.message());
++error_counter;

// OK, we're outta here.
Expand Down

0 comments on commit d9242cc

Please sign in to comment.