Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
c572c20c
Commit
c572c20c
authored
12 years ago
by
Kurt Partridge
Browse files
Options
Downloads
Patches
Plain Diff
[Rlog8] Show red border if logging everything
Change-Id: I5a3f21cef7d93128661b11b60eac7d84b8110e47
parent
cff28c5d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/research/ResearchLogger.java
+5
-1
5 additions, 1 deletion
.../src/com/android/inputmethod/research/ResearchLogger.java
with
5 additions
and
1 deletion
java/src/com/android/inputmethod/research/ResearchLogger.java
+
5
−
1
View file @
c572c20c
...
...
@@ -94,8 +94,12 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
private
static
final
String
FILENAME_SUFFIX
=
".txt"
;
private
static
final
SimpleDateFormat
TIMESTAMP_DATEFORMAT
=
new
SimpleDateFormat
(
"yyyyMMddHHmmssS"
,
Locale
.
US
);
// Whether to show an indicator on the screen that logging is on. Currently a very small red
// dot in the lower right hand corner. Most users should not notice it.
private
static
final
boolean
IS_SHOWING_INDICATOR
=
true
;
private
static
final
boolean
IS_SHOWING_INDICATOR_CLEARLY
=
false
;
// Change the default indicator to something very visible. Currently two red vertical bars on
// either side of they keyboard.
private
static
final
boolean
IS_SHOWING_INDICATOR_CLEARLY
=
false
||
LOG_EVERYTHING
;
public
static
final
int
FEEDBACK_WORD_BUFFER_SIZE
=
5
;
// constants related to specific log points
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment