mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-24 03:35:58 +00:00
Improve logging around message sending.
There were some message types where we didn't log the timestamp. The timestamp is important for debugging issues (let's us locate an error more precisely in the logs).
This commit is contained in:
@@ -181,9 +181,9 @@ public class LogSectionSystemInfo implements LogSection {
|
||||
|
||||
if (aci != null) {
|
||||
String aciString = aci.toString();
|
||||
String lastTwo = aciString.substring(aciString.length() - 2);
|
||||
String lastThree = aciString.substring(aciString.length() - 3);
|
||||
|
||||
return "********-****-****-****-**********" + lastTwo;
|
||||
return "********-****-****-****-*********" + lastThree;
|
||||
} else {
|
||||
return "N/A";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user