add toString for test ease

This commit is contained in:
Art O Cathain 2014-07-06 15:48:47 +01:00
parent 5479eafd4b
commit 9032e032ff

View File

@ -9,6 +9,7 @@ import org.sufficientlysecure.keychain.util.IterableIterator;
import org.sufficientlysecure.keychain.util.Log; import org.sufficientlysecure.keychain.util.Log;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
@ -104,6 +105,15 @@ public class OperationResultParcel implements Parcelable {
} }
}; };
@Override
public String toString() {
return "LogEntryParcel{" +
"mLevel=" + mLevel +
", mType=" + mType +
", mParameters=" + Arrays.toString(mParameters) +
", mIndent=" + mIndent +
'}';
}
} }
/** This is an enum of all possible log events. /** This is an enum of all possible log events.