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 bbf234d commit dd1af5eCopy full SHA for dd1af5e
dotnet/src/webdriver/SeleniumManager.cs
@@ -196,7 +196,7 @@ private static SeleniumManagerResponse.ResultResponse RunCommand(string fileName
196
{
197
foreach (var entry in jsonResponse.Logs)
198
199
- switch (entry.Level)
+ switch (entry?.Level)
200
201
case "WARN":
202
if (_logger.IsEnabled(LogEventLevel.Warn))
@@ -226,7 +226,7 @@ private static SeleniumManagerResponse.ResultResponse RunCommand(string fileName
226
227
internal class SeleniumManagerResponse
228
229
- public IReadOnlyList<LogEntryResponse>? Logs { get; set; }
+ public IReadOnlyList<LogEntryResponse?>? Logs { get; set; }
230
231
public ResultResponse? Result { get; set; }
232
0 commit comments