# this should only have side 4 logged, the helper functions say the right thing, but the plot shows both logged
gs <- gsplot() %>%
points(1:2,c(2,25)) %>%
points(c(1,2), c(1, 1000000000), side=4, log='y')
gs
logged(gs, side=2)
[1] FALSE
logged(gs, side=4)
[1] TRUE
gsplot object is correct, but plotting the wrong thing