diff options
author | 2013-03-18 18:55:25 -0700 | |
---|---|---|
committer | 2013-03-18 18:55:25 -0700 | |
commit | 3b93f0e9a7fa5c26c016288b1fed63365ae0fa58 (patch) | |
tree | 7c8db0e5590677297ee5a2125ee81f67dfaef383 /java/src/com/android/inputmethod/research/ResearchLog.java | |
parent | 68c09b56bf684e5bc5b8e65ad0f20b538f78a56a (diff) | |
parent | 841c295f3c99214f45924434d9c0bb5b4760578d (diff) | |
download | latinime-3b93f0e9a7fa5c26c016288b1fed63365ae0fa58.tar.gz latinime-3b93f0e9a7fa5c26c016288b1fed63365ae0fa58.tar.xz latinime-3b93f0e9a7fa5c26c016288b1fed63365ae0fa58.zip |
am 841c295f: resolved conflicts for merge of 5b048292 to master
* commit '841c295f3c99214f45924434d9c0bb5b4760578d':
Rename ProductionFlag.IS_EXPERIMENTAL to USES_DEVELOPMENT_ONLY_DIAGNOSTICS
Diffstat (limited to 'java/src/com/android/inputmethod/research/ResearchLog.java')
-rw-r--r-- | java/src/com/android/inputmethod/research/ResearchLog.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/research/ResearchLog.java b/java/src/com/android/inputmethod/research/ResearchLog.java index 080366e9b..35a491f2c 100644 --- a/java/src/com/android/inputmethod/research/ResearchLog.java +++ b/java/src/com/android/inputmethod/research/ResearchLog.java @@ -47,12 +47,14 @@ import java.util.concurrent.TimeUnit; * tries to avoid creating unnecessary files if there is nothing to write. It also handles * flushing, making sure it happens, but not too frequently. * - * This functionality is off by default. See {@link ProductionFlag#IS_EXPERIMENTAL}. + * This functionality is off by default. See + * {@link ProductionFlag#USES_DEVELOPMENT_ONLY_DIAGNOSTICS}. */ public class ResearchLog { // TODO: Automatically initialize the JsonWriter rather than requiring the caller to manage it. private static final String TAG = ResearchLog.class.getSimpleName(); - private static final boolean DEBUG = false && ProductionFlag.IS_EXPERIMENTAL_DEBUG; + private static final boolean DEBUG = false + && ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS_DEBUG; private static final long FLUSH_DELAY_IN_MS = 1000 * 5; /* package */ final ScheduledExecutorService mExecutor; |