Log URI replacements.

This commit is contained in:
tastytea 2020-01-11 16:42:01 +01:00
parent 4a940062d8
commit 078f6d0c73
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 0 deletions

View File

@ -317,6 +317,8 @@ bool CURLWrapper::replace_parameter_in_uri(string &uri,
{
uri.replace(pos, parameter.first.size() + 2,
get<string_view>(parameter.second));
debuglog << "Replaced :" << parameter.first << " in URI with "
<< get<string_view>(parameter.second) << '\n';
return true;
}
}