add support for second line in log view

This commit is contained in:
Vincent Breitmoser
2014-10-05 11:10:40 +02:00
parent 7fedde2638
commit 6699917279
4 changed files with 112 additions and 33 deletions

View File

@@ -121,6 +121,7 @@ public class PgpCertifyOperation {
log.add(LogType.MSG_CRT_SAVE, 2,
KeyFormattingUtils.convertKeyIdToHex(certifiedKey.getMasterKeyId()));
// store the signed key in our local cache
mProviderHelper.clearLog();
SaveKeyringResult result = mProviderHelper.savePublicKeyRing(certifiedKey);
if (result.success()) {
@@ -129,6 +130,8 @@ public class PgpCertifyOperation {
log.add(LogType.MSG_CRT_WARN_SAVE_FAILED, 3);
}
log.add(result, 2);
// TODO do something with import results
}