You can fetch approvers user name by creating custom List item event receiver for task list. Create Item updated event receiver and add following code...
public override void ItemUpdated(SPItemEventProperties properties)
{
base.ItemUpdated(properties);
SPListItem oListItem = properties.ListItem;
oListItem["ApprovedBy1"] = properties.UserDisplayName;
oListItem.Update();
}
*Note: Create new column for workflow task list. I created new column with 'ApprovedBy1' name.