mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-25 08:28:50 -05:00
add toString for test ease
This commit is contained in:
parent
22108cf4e2
commit
b02519ce25
@ -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;
|
||||||
|
|
||||||
/** Represent the result of an operation.
|
/** Represent the result of an operation.
|
||||||
*
|
*
|
||||||
@ -102,6 +103,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.
|
||||||
|
Loading…
Reference in New Issue
Block a user