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

View file

@ -59,8 +59,11 @@ std::string Mappings::map(std::string inp) {
auto mapped = this->mappings[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 renames[mapped];
}
return mapped; return mapped;
} }