I am troubleshooting an app which uses doubles and am therefore trying to print them using System.println(). But when I do this nothing appears. If I convert to float, i.e. System.println(d.toFloat()) this works fine, but I loose the precision and this is what I am trying to troubleshoot.
Is a bug? Should println() be able to print doubles? Is there any way to do this?