feat: add some more logging
This commit is contained in:
parent
9b3b350041
commit
a50638a379
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue