I have a "best practice" question about resolving merge conflicts.
Let's say I have master and need to merge a feature branch into it which introduced logging facilities. Further, let's say that during the merge, I get conflicts because some print statements in master were modified which were replaced with logging statements in the feature branch.
Now, during manual merge resolution, would you say it is permitted for the person resolving the conflicts to also replace code which is related to logging but was not yet handled in the feature branch? E.g. in the code block which contained a conflict, a new print statement was also added in master. As it was not yet in the feature branch, it would remain in the merged code unless someone replaced it with the correct logging statement.
Or should merging only touch actual conflicts, leaving all inconsistencies such as those above for future commits?