I've inserted an rsDebug method in the Android RenderScript sample "Fountain", but I'm getting no messages out of logcat.
Here's a code snippet to demonstrate what I've tried:
int root() {
float dt = min(rsGetDt(), 0.1f);
rsDebug("dt", dt);
...
}