How can I view arbitrary javascript logs with the react-native toolchain? Facebook's documentation states react-native log-android should show them, but I am not seeing anything when I write a trivial log such as in index.android.js:
import React, { Component } from 'react'
// ...
console.log("foo") // first log after imports
Would this show up in the adb logcat logs? This is through an emulated device, and oddly enough I can witness other trivial changes (such as, manipulations in font size), so I know my build system "works", but I can't see the logs for some reason.
Also, note that this is using an Ubuntu GNU/Linux development system, not OSX.