Mark log entries comming from ruffy.

This commit is contained in:
Johannes Mockenhaupt 2017-07-24 15:17:27 +02:00
parent c8c4cf2813
commit 314a551c96
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1

View file

@ -95,12 +95,12 @@ public class RuffyScripter {
private IRTHandler mHandler = new IRTHandler.Stub() {
@Override
public void log(String message) throws RemoteException {
log.trace(message);
log.trace("Ruffy says: " + message);
}
@Override
public void fail(String message) throws RemoteException {
log.warn(message);
log.warn("Ruffy warns: " + message);
}
@Override