Add debug logs to CreateConnectionTimeout when no PhoneAccount can terminate the call

We have good debug log coverage on the prerequisites for having a timeout, but not for the codepath where the timeout is triggered and not run because no PhoneAccount can handle the call.

Bug: 339313757
Test: N/A, debug log only change
Flag: NONE debug log only change

Change-Id: If30af7857b6efa886c53d369489a87138bd37235
diff --git a/src/com/android/server/telecom/CreateConnectionTimeout.java b/src/com/android/server/telecom/CreateConnectionTimeout.java
index 7615d21..3046ca4 100644
--- a/src/com/android/server/telecom/CreateConnectionTimeout.java
+++ b/src/com/android/server/telecom/CreateConnectionTimeout.java
@@ -136,6 +136,9 @@
                 timeoutCallIfNeeded();
                 return;
             }
+            Log.i(
+                this,
+               "loggedRun, no PhoneAccount with voice calling capabilities, not timing out call");
         }
     }