Browse Source

Merge pull request #14603 from abpframework/hamza/githubdoc-errorlog-towarning-log

Decrease log level for `Resource temporarily unavailable` to `Warning`
pull/14615/head
Halil İbrahim Kalkan 4 years ago
committed by GitHub
parent
commit
de01e84a4f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/docs/src/Volo.Docs.Domain/Volo/Docs/GitHub/Documents/GithubDocumentSource.cs

2
modules/docs/src/Volo.Docs.Domain/Volo/Docs/GitHub/Documents/GithubDocumentSource.cs

@ -197,7 +197,7 @@ namespace Volo.Docs.GitHub.Documents
}
catch (Exception e)
{
Logger.LogError(e.ToString());
Logger.LogWarning(e.ToString());
return null;
}
}

Loading…
Cancel
Save