You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Found and fixed stray occurrences of "SK" => "Kernel" (e.g.
"ISKFunction" in comments or traced messages.
- Cleaned up a little tracing code inside KernelFunctionFromMethod.
- Consistently handle case of CreateLogger returning null. While it's
not supposed to, a custom logger could, and we should handle that
gracefully.
- Disable CA1508 (avoid dead conditional code). There are too many false
positives.
Copy file name to clipboardexpand all lines: dotnet/src/Connectors/Connectors.OpenAI/ChatCompletionWithData/AzureOpenAIChatCompletionWithDataService.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ public AzureOpenAIChatCompletionWithDataService(
loggerFactory.CreateLogger(typeof(GrpcKernelExtensions)).LogWarning(ex,"Something went wrong while rendering the gRPC function. Function: {0}. Error: {1}",operation.Name,ex.Message);
213
+
logger.LogWarning(ex,"Something went wrong while rendering the gRPC function. Function: {0}. Error: {1}",operation.Name,ex.Message);
0 commit comments