diff --git a/monitarr/monitarr/main.cpp b/monitarr/monitarr/main.cpp index db6b4a5..f493634 100644 --- a/monitarr/monitarr/main.cpp +++ b/monitarr/monitarr/main.cpp @@ -45,8 +45,8 @@ static void remove_stalled(std::string_view download_id, std::string_view title, response = cli.Post("/api/{}/command", data.dump(), "application/json"); if (response->status != httplib::StatusCode::OK_200) { - fmt::println("failed to search radarr|{}|{}", server.url, - response->status); + fmt::println("failed to search radarr|{}|{}|{}|{}", server.url, title, + movie_id, response->status); } return; } @@ -59,8 +59,8 @@ static void remove_stalled(std::string_view download_id, std::string_view title, response = cli.Post("/api/{}/command", data.dump(), "application/json"); if (response->status != httplib::StatusCode::OK_200) { - fmt::println("failed to search sonarr|{}|{}", server.url, - response->status); + fmt::println("failed to search sonarr|{}|{}|{}|{}", server.url, title, + episode_id, response->status); } return; }