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:
Greyson Parrelli
2023-03-23 15:41:50 -04:00
parent d58c4ef439
commit 76984ab042
2 changed files with 22 additions and 2 deletions

View File

@@ -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";
}