feat: add some more logging

This commit is contained in:
LordMZTE 2022-11-05 20:18:05 +01:00
parent 9b3b350041
commit a50638a379
Signed by: LordMZTE
GPG Key ID: B64802DC33A64FF6
1 changed files with 4 additions and 1 deletions

View File

@ -59,8 +59,11 @@ std::string Mappings::map(std::string inp) {
auto mapped = this->mappings[inp];
if (this->renames.count(mapped))
if (this->renames.count(mapped)) {
BOOST_LOG_TRIVIAL(info)
<< "found rename " << mapped << " -> " << renames[mapped];
return renames[mapped];
}
return mapped;
}