X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flp_ws.c;h=81b8b63086c01472c677a612aed11d6dd4d78bba;hb=49b52ead6d48488a4c1f90f372564c834da803cb;hp=5eca19ab4c47ef30be8dd6dd4536a64ba2514892;hpb=b60e9c95703275bf2088ec2e398a9c47b30a89e7;p=ppastats.git diff --git a/src/lp_ws.c b/src/lp_ws.c index 5eca19a..81b8b63 100644 --- a/src/lp_ws.c +++ b/src/lp_ws.c @@ -16,6 +16,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include +#define _(String) gettext(String) #include #include @@ -26,6 +28,7 @@ #include "cache.h" #include "list.h" +#include "log.h" #include "lp_ws.h" #include "lp_json.h" #include "ppastats.h" @@ -65,12 +68,10 @@ static char *fetch_url(const char *url) long code; int retries; - if (debug) - printf("DEBUG: fetch_url %s\n", url); + log_debug(_("fetch_url(): %s"), url); if (!curl) { - if (debug) - printf("DEBUG: initializing CURL\n"); + log_debug(_("initializing CURL")); curl_global_init(CURL_GLOBAL_ALL); curl = curl_easy_init(); } @@ -105,14 +106,12 @@ static char *fetch_url(const char *url) case 503: case 504: if (retries) { - fprintf(stderr, - "Fetch failed: with code %ld " - "for URL= %s\n", + log_err(_("Fetch failed with code %ld " + "for URL %s"), code, url); - if (debug) - printf("Wait 5s before retry.\n"); + log_debug(_("Wait 5s before retry")); sleep(5); free(content->data); @@ -120,7 +119,7 @@ static char *fetch_url(const char *url) goto retrieve; } default: - fprintf(stderr, "Fetch failed: %ld\n", code); + log_err(_("Fetch failed: %ld"), code); } } @@ -292,8 +291,7 @@ struct daily_download_total **get_daily_download_totals(const char *binary_url) void lp_ws_cleanup() { - if (debug) - printf("DEBUG: cleanup CURL\n"); + log_debug(_("cleanup CURL")); curl_easy_cleanup(curl); curl_global_cleanup();