From 334eb9663cbe28e447e31818411e0ec3702f8b09 Mon Sep 17 00:00:00 2001 From: braim23 <94292623+braim23@users.noreply.github.com> Date: Thu, 10 Nov 2022 19:44:37 +0300 Subject: [PATCH] change error log to warning log --- .../Volo/Docs/GitHub/Documents/GithubDocumentSource.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/docs/src/Volo.Docs.Domain/Volo/Docs/GitHub/Documents/GithubDocumentSource.cs b/modules/docs/src/Volo.Docs.Domain/Volo/Docs/GitHub/Documents/GithubDocumentSource.cs index 060c6dcf08..2348ffd484 100644 --- a/modules/docs/src/Volo.Docs.Domain/Volo/Docs/GitHub/Documents/GithubDocumentSource.cs +++ b/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; } }