Skip to content

Commit 82cb69a

Browse files
committed
Remove extra logging
1 parent a0a8c95 commit 82cb69a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

firebaseai/testapp/Assets/Firebase/Sample/FirebaseAI/UIHandlerAutomated.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -766,13 +766,10 @@ private async Task<Dictionary<string, object>> GetJsonTestData(string filename)
766766
}
767767

768768
if (string.IsNullOrEmpty(jsonString)) {
769-
DebugLog("Failed to load from local file, downloading...");
770769
var response = await httpClient.SendAsync(new HttpRequestMessage(HttpMethod.Get, testDataUrl + filename));
771770
response.EnsureSuccessStatusCode();
772771

773772
jsonString = await response.Content.ReadAsStringAsync();
774-
} else {
775-
DebugLog("Using local file");
776773
}
777774

778775
return Json.Deserialize(jsonString) as Dictionary<string, object>;

0 commit comments

Comments
 (0)