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
Logger.LogError("Failed to import API definition for {apiDefinition}. Status: {status}, reason: {reason}",apiDefinitionId,res.StatusCode,res.ReasonPhrase);
387
+
varresContent=res.ReasonPhrase;
388
+
try
389
+
{
390
+
resContent=awaitres.Content.ReadAsStringAsync();
391
+
}
392
+
catch
393
+
{
394
+
}
395
+
396
+
Logger.LogError("Failed to import API definition for {apiDefinition}. Status: {status}, reason: {reason}",apiDefinitionId,res.StatusCode,resContent);
0 commit comments