I have a list like this:
{{1,2}, {4,2}, {6,4} ... }
I want to replace every second number with a function of that number. For e.g.
{{1, Log[2]}, {4,Log[2]}, {6,Log[4]} ...}
It is ok if the actual number is evaluated e.g. {1, .301} for the first one. I am trying to do this with a combination of Apply, Map and ReplacePart but am having no luck.
I do not understand how to do @@ in cases where the nested list is supplied as an argument to the function.

{#[[1]], Log[#[[2]]]} & /@ { {1,2}, {4,2}, {6,4}}? $\endgroup$