aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-11-04 20:42:49 +0100
committerVincent Breitmoser <valodim@mugenguild.com>2015-11-04 20:44:35 +0100
commit0a266cdb4a15b01ec692eb5d3b69b3a361011245 (patch)
tree713dbd739615ed2b2d4c638e2eabb965e2a33925 /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
parent3ca8af060b2f6452df794a8770714d1f02b36734 (diff)
downloadopen-keychain-0a266cdb4a15b01ec692eb5d3b69b3a361011245.tar.gz
open-keychain-0a266cdb4a15b01ec692eb5d3b69b3a361011245.tar.bz2
open-keychain-0a266cdb4a15b01ec692eb5d3b69b3a361011245.zip
bench: run ops multiple times and for an average time
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
index 6df95683c..65c36d246 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
@@ -876,8 +876,10 @@ public abstract class OperationResult implements Parcelable {
MSG_LV_FETCH_ERROR_NOTHING (LogLevel.ERROR, R.string.msg_lv_fetch_error_nothing),
MSG_BENCH (LogLevel.START, R.string.msg_bench),
- MSG_BENCH_ENC_TIME (LogLevel.INFO, R.string.msg_bench_enc_time),
- MSG_BENCH_DEC_TIME (LogLevel.INFO, R.string.msg_bench_dec_time),
+ MSG_BENCH_ENC_TIME (LogLevel.DEBUG, R.string.msg_bench_enc_time),
+ MSG_BENCH_ENC_TIME_AVG (LogLevel.INFO, R.string.msg_bench_enc_time_avg),
+ MSG_BENCH_DEC_TIME (LogLevel.DEBUG, R.string.msg_bench_dec_time),
+ MSG_BENCH_DEC_TIME_AVG (LogLevel.INFO, R.string.msg_bench_enc_time_avg),
MSG_BENCH_SUCCESS (LogLevel.OK, R.string.msg_bench_success),
;