Skip to content

Commit

Permalink
fix: logging levels to Trace
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgelionis committed May 17, 2024
1 parent fefa4ee commit 9f77939
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ private static IEnumerable<IExternalSearchQueryResult> InternalExecuteSearch(Exe

try
{
context.Log.LogInformation("Making Google Maps call. Request: ", JsonUtility.Serialize(placeIdRequest.Parameters));
context.Log.LogTrace("Making Google Maps call. Request: ", JsonUtility.Serialize(placeIdRequest.Parameters));
placeIdResponse = client.ExecuteTaskAsync<PlaceIdResponse>(placeIdRequest).Result;
}
catch(Exception exception)
Expand Down Expand Up @@ -349,7 +349,7 @@ private static IEnumerable<IExternalSearchQueryResult> InternalExecuteSearch(Exe

try
{
context.Log.LogInformation("Making Google Maps call. Request: ", JsonUtility.Serialize(request.Parameters));
context.Log.LogTrace("Making Google Maps call. Request: ", JsonUtility.Serialize(request.Parameters));
response = client.ExecuteTaskAsync<CompanyDetailsResponse>(request).Result;
}
catch(Exception exception)
Expand Down

0 comments on commit 9f77939

Please sign in to comment.