Commit d9166028 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curl: show size of inhibited data when using -v

To offer some more info and yet it doesn't use more lines.
parent 6dae7988
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ int tool_debug_cb(CURL *handle, curl_infotype type,
        if(!config->isatty || ((output != stderr) && (output != stdout))) {
          if(!newl)
            fprintf(output, "%s%s ", timebuf, s_infotype[type]);
          fprintf(output, "[data not shown]\n");
          fprintf(output, "[%zd bytes data]\n", size);
          newl = FALSE;
          traced_data = TRUE;
        }