aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2014-06-10 20:06:28 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2014-06-10 20:06:28 +0200
commit3895c10a5821a3ce11946c4cd88298c0b7410d5f (patch)
tree8ec8af7ac60361cf6d57bc37368ca3edef68e837 /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service
parentf38556cab1215f1e49f2e6c2e90627a4c00b02d5 (diff)
downloadopen-keychain-3895c10a5821a3ce11946c4cd88298c0b7410d5f.tar.gz
open-keychain-3895c10a5821a3ce11946c4cd88298c0b7410d5f.tar.bz2
open-keychain-3895c10a5821a3ce11946c4cd88298c0b7410d5f.zip
import-log: work on log fragment ui
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/OperationResultParcel.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/OperationResultParcel.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/OperationResultParcel.java
index 8a3b06f67..4c288502c 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/OperationResultParcel.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/OperationResultParcel.java
@@ -173,12 +173,12 @@ public class OperationResultParcel implements Parcelable {
/** Enumeration of possible log levels. */
public static enum LogLevel {
- START, // should occur once at the start of each independent operation
- OK, // should occur once at the end of a successful operation
- ERROR, // should occur once at the end of a failed operation
DEBUG,
INFO,
WARN,
+ ERROR, // should occur once at the end of a failed operation
+ START, // should occur once at the start of each independent operation
+ OK, // should occur once at the end of a successful operation
}
@Override