We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb51ed3 commit 178298fCopy full SHA for 178298f
AndroidXCI/lib/src/main/kotlin/dev/androidx/ci/testRunner/FirebaseTestLabController.kt
@@ -166,12 +166,16 @@ internal class FirebaseTestLabController(
166
suspend fun getTestMatrix(
167
testMatrixId: String
168
): TestMatrix? {
169
+ logger.info("Calling getTestMatrix in FTL on $testMatrixId")
170
return try {
171
firebaseTestLabApi.getTestMatrix(
172
projectId = firebaseProjectId,
173
testMatrixId = testMatrixId
174
)
175
} catch (httpException: HttpException) {
176
+ logger.error(httpException) {
177
+ "FTL getTestMatrix call for $testMatrixId ran into issues"
178
+ }
179
if (httpException.code() == 404) {
180
return null
181
}
0 commit comments