Enable use of RUST_LOG with mach run --android.

This commit is contained in:
Josh Matthews 2018-09-20 14:14:41 -04:00
parent a6dbfdd29f
commit f7516f57a7
7 changed files with 31 additions and 15 deletions

View file

@ -71,7 +71,8 @@ public class MainActivity extends Activity implements Servo.Client {
}
String args = getIntent().getStringExtra("servoargs");
mServoView.setServoArgs(args);
String log = getIntent().getStringExtra("servolog");
mServoView.setServoArgs(args, log);
setupUrlField();
}