diff options
| author | 2023-09-29 18:02:30 -0500 | |
|---|---|---|
| committer | 2023-09-29 18:02:30 -0500 | |
| commit | 1e6ce8a13813ee7057a3a80e5571e7ea388cb6f8 (patch) | |
| tree | b55c0db2a52155f3e819be44a6bcb9c625e7b75b | |
| parent | a2746b253cfd78b0d65e0918a6e57f344ac42c66 (diff) | |
Improve error logging
Bug: 298788229
Test: build
Change-Id: Ifeb9ca8f27bf6155b93098cb041ee5966d492392
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/screenrecord/RecordingService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/screenrecord/RecordingService.java b/packages/SystemUI/src/com/android/systemui/screenrecord/RecordingService.java index 3501b6bc045e..bd43307dba5a 100644 --- a/packages/SystemUI/src/com/android/systemui/screenrecord/RecordingService.java +++ b/packages/SystemUI/src/com/android/systemui/screenrecord/RecordingService.java @@ -456,6 +456,7 @@ public class RecordingService extends Service implements ScreenMediaRecorderList currentUser); } catch (IOException | IllegalStateException e) { Log.e(TAG, "Error saving screen recording: " + e.getMessage()); + e.printStackTrace(); showErrorToast(R.string.screenrecord_save_error); mNotificationManager.cancelAsUser(null, mNotificationId, currentUser); } |