I'm trying to debug an issue on RStudio Server. I used debugonce(my_function). The interface seems to be working as normal, however, the print function appears broken:
I say "working as normal" because if I simply pipe the output outside of R, it works:
R> capture.output(print(params), file = 'params.out')
bash> cat params.out
list()
Of course, this is much more inconvenient (especially since system calls within R are affected by the same malfunction, so I have to switch to the Terminal tab).