summaryrefslogtreecommitdiff
path: root/telecomm/java/android/telecom/Logging
Commit message (Collapse)AuthorAgeFilesLines
* Bound Telecom logging recursionBrad Ebinger2021-04-291-11/+11
| | | | | | | | | | Put a bound on the recursion in Session#toString to ensure we do not accidently cause a Stack overflow Bug: 186694546 AOSP: aosp/1691210 Test: atest TeleServiceTests Change-Id: I52f44dd02d0d860d0894e9b84fded8cf5ff5a18e
* [telecom] system_server should not call non forUser Settings.Secure.get* methodsSongchun Fan2020-09-031-2/+5
| | | | | | BUG: 166312046 Test: builds Change-Id: I69e91c84ff170abd6e82e0ff322e168c11004daa
* Improve connection manager logging.Tyler Gunn2020-05-052-8/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. In ConnectionService, upping the incoming log level to info from debug; this ensures we can better trace whether methods are actually called. 2. Added the ability in the logging class to get a new external session which supplies the owner info which will be passed in to the recipient of the external session. This allows Telecom or a connection manager to pass in a package abbreviation which will form the calling owner info when the receiver continues the external session. 3. Add owner info to the Session.Info class so it can be passed about. 4. Ensure owner info is copied when getting Session.Info; subsessions were not showing the owner info in the past; this corrects that. 5. When retrieving the external session info, creating a "package call stack" with the owner info. This lets us see the hierarchy of where calls originated. Example: cad/cast/ccme Shows that com.android.dialer send a message to com.android.server.telecom which relayed a message to com.connection.manager.example. 6. Start sessions in RemoteConnection API methods and pass along external session info. This bridges session tracing across a connection manager so we can now trace a method call all the way from dialer, through telecom, through the connection manager, and finally into telephony. Test: Manual call testing with connection manager to verify log behavior. Bug: 153899641 Change-Id: I4518a50550203818374b4e0b52eccb84ffd561dc
* Improve remote connection logging.Tyler Gunn2020-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | This CL improves traceability of calls initiated via a remote connection service. For regular incoming/outgoing calls, when initiating a request to create a remote connection in RemoteConnectionService, we set EXTRA_REQUESTING_PACKAGE_NAME in the parcelled request to the package name of the connection manager. In ConnectionService this serves as an indicator that the incoming request is via a connection manager and is used to trigger setting of EXTRA_REMOTE_PHONE_ACCOUNT_HANDLE with the phone account handle the remote connection service uses to place the call. For conferences and existing connections, the initial request is from the remote connection service to the connection manager so we can just set the EXTRA_REMOTE_PHONE_ACCOUNT handle there directly. Also cleaned up logging in the telecom session logging to remove the assumption that the ownerInfo is an incall service. Test: Manual testing with connection manager to verify logging. Fixes: 154353494 Change-Id: Iee1b5cfd3334a5de08d7b04022b7c6d5af6a4b04
* Fix infinite recursion due to error log messageBrad Ebinger2019-11-132-5/+29
| | | | | | Bug: 144446106 Test: atest TelecomUnitTests:SessionTest Change-Id: I382f90ad6f91262b06ac8816ecf1ecabfa9f6bb6
* Expose ConnectionService Handler to remove flaky testsBrad Ebinger2019-09-171-0/+14
| | | | | Test: atest TelecomUnitTests Change-Id: Ibb80b5739083ad9f85ee06f4d9f0017f4cb605bd
* Merge "Prevent Infinite Recursion in Telecom Sessions"Brad Ebinger2019-08-131-19/+51
|\ | | | | | | | | | | am: 8dec6de25a Change-Id: I779c9424dc7a1f9f14f7907bba76a24b9026ec5a
| * Prevent Infinite Recursion in Telecom SessionsBrad Ebinger2019-08-131-19/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | There looks to be a case where infinite recursion is occuring when printing information about Telecom Sessions. Set a reasonable limit of iterations and throw a warning when this condition occurs to better track down a root cause. Bug: 139045282 Test: atest TelecomUnitTests:SessionTest Merged-In: Iae69c5db070c5e58ae5d37c12d1c4df027138611 Change-Id: Iae69c5db070c5e58ae5d37c12d1c4df027138611
* | All Parcelable CREATOR fields are @NonNull.Jeff Sharkey2019-02-281-1/+1
|/ | | | | | | | | If they were null, then the Parcelable would fail to work. Bug: 126726802 Test: manual Change-Id: I7929ffa2f20e5de1c8e68e8263cca99496e9d014 Exempt-From-Owner-Approval: Trivial API annotations
* Fix flaky AnalytisTest by locking in EventRecordHall Liu2018-11-071-16/+20
| | | | | | | | | AnalyticsTests were flaking with concurrent modification exceptions. Fix this by locking mEvents properly in EventRecord. Bug: 119226554 Test: leave it to presubmit Change-Id: I4df0afe399fab148bbebcef51272c56f628ee18f
* Fix Telecom dumpsys timestampsHall Liu2018-03-061-13/+18
| | | | | | | | | | Change the dumpsys timestamps to use java.time for processing and always log events with local timezone that was in effect at the time the event happened. Bug: 74250969 Test: manual, run dumpsys Change-Id: Ie53cff4400be1528b3224bd556536a689ef22c8c
* Add timezone for Telecom event date formattingHall Liu2017-07-191-0/+2
| | | | | | | | Output event times in local time rather than in UTC for compatibility with the rest of the timestamps in the bug report Test: manual Change-Id: I2d458f09aec635a43e3d0565e8f8da803124f368
* Add ability to dump events in a timeline view.Tyler Gunn2017-05-191-1/+39
| | | | | | | | | Adding new event dump which shows the events for all call, sorted by time of event. Test: Manual Bug: 38450166 Change-Id: I9fd4ce92bdf62ef48d6940f03db1f2388003e9fc
* Readability improvements in LoggingBrad Ebinger2016-11-163-28/+68
| | | | | | | | | | | | We now truncate Session method paths and IDs based on the Logging level to improve Session Logging readability in logcat. If another external session is started off of an existing external Session, the preceding histories are replaced with "..." so that the Session information is not overwhelming. Bug: 26571395 Test: Unit Tests and manual tests pass Change-Id: I9ffda3d64f1072fa6228a82a86116a5e47d18c96
* Modify AIDLs to include Session.InfoBrad Ebinger2016-10-273-1/+48
| | | | | | | | | | Modifies the IConnectionService.aidl file to include Session.Info information to pass from Telecom to Telephony, which is used to start external Sessions in Telephony from Telecom. Test: Manual testing and Unit Tests pass Bug: 26571395 Change-Id: Ia09a0abfa13d5167542d4c67465ea9aa1930b58b
* Add support for starting external SessionsBrad Ebinger2016-10-252-38/+202
| | | | | | | | | | This change adds support for parceling Session Information to be transmitted over AIDLs and starting an external session in the external process. Test: Telecom Unit tests and new SessionManager Tests. Bug: 26571395 Change-Id: Ie27ed88d4a8c344b34568025ddcf150fdcb38d62
* Merge "Switch on android.telecom.Log in Telecom"Brad Ebinger2016-10-202-1/+89
|\
| * Switch on android.telecom.Log in TelecomBrad Ebinger2016-10-112-1/+89
| | | | | | | | | | | | | | | | | | | | Move over the Runnable Class into android.telecom and turn on the framework's usage in Telecom. Test: All Telecom unit tests pass. Manual Log testing has also been confirmed to be working as it did before. Bug: 26571395 Change-Id: If7e2036c746c5a953f3a77e2d625a423ce5bf8f3
* | Adds registerSessionListener API to LogBrad Ebinger2016-10-192-3/+0
| | | | | | | | | | | | | | | | | | | | Adds the registerSessionListener API to android.telecom.Log to allow callbacks to occur when a session has been fully completed. CP from internal branch. Test: Manual Testing Bug: 26571395 Change-Id: I70ebd6f432768a5d7bd8f3a0997b8e0ef335bb35
* | Add support for new SessionManager and EventManager testsBrad Ebinger2016-10-133-56/+104
|/ | | | | | Test: Ran new unit tests Bug: 26571395 Change-Id: I6d14d7c05b8fdc8dc1319a81f0e41f7bcd989b85
* Transplant the Logging system from TelecomBrad Ebinger2016-09-304-0/+982
This change is the preliminary transplant of the functionality from Telecom into android.telecom. It is currently not being used anywhere and is not hooked into Telecom yet. It will be after this change is committed. Test: Refactoring CL. Existing tests still pass Bug: 26571395 Change-Id: I406975e686c6eaab7e31b1efa426b3406c8e90cf