| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
There is now only one LogTag class. The static initializer of
GmailApplication (existing) and EmailApplication (new) will now set
the log tag to "Gmail" and "Email", respectively. Up until that code
is run, it will be "UnifiedEmail".
"setprop log.tag.Gmail VERBOSE" (or .Email) will trigger all logs to
be printed as long as they go through LogUtils, regardless of what tag
is used by that individual log. This lets us still turn on logging
everywhere in one command, but also lets us use more descriptive tags
(like the class name).
And since we no longer have three com.android.mail.utils.LogTag
classes, builds will be much easier.
Also, we now use LogUtils everywhere.
Change-Id: Iec53e87cad0a46b73d2afbbd8d44aca097a5087a
|
| |
|
|
|
|
|
| |
This is needed only during development, and can be disabled now.
Bug: 8568764 Disable MailLogService
Change-Id: I136b13ef76200d3d895b9c1cb0fe7b105d686068
|
| |
|
|
| |
Change-Id: I5c75564eeb2df9ec76d682dbe5f4465ff2a1a5d4
|
| |
|
|
|
|
|
|
|
|
| |
Create Folder objects in the background. This frees the UI thread
after onLoadFinished is called, since the object has already been
created.
Bug: 8315641 optimize AbstractActivityController's loaders
Change-Id: I1f4b2f679cf99a9193d88cb6b9a5aa77b33d6ea9
|
| |
|
|
| |
Change-Id: I05cfd0d62e93eaf68252de7465853bee3fde8422
|
|
|
MailLogService provides logging to circular buffers for a given tag.
The application adds logging to these circular buffers. When a
bugreport is captured, the last fifty lines of logs per tag is printed
out on the bugreport.
A compile-time boolean can disable this entire functionality. Even if
it is enabled, the user needs to increase the log level using adb
shell setprop to start the service. If the service is not running,
logging is still carried out, though it will never be dumped.
This is for development only. It needs to be turned off before
release.
Bug: 8293525 Add debugging information for Gmail
Change-Id: Id59a9ff9a88a40e1afdfd31f0441b9531e797d4d
|