Fix logged message's grammar; bump version

This commit is contained in:
Noi 2023-03-05 23:05:37 -08:00
parent 29f2eeb31e
commit c893b317f0
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ class AutoUserDownload : BackgroundService {
Log("Exception thrown by download task: " + dl.Exception); Log("Exception thrown by download task: " + dl.Exception);
break; break;
} else if (!dl.IsCompletedSuccessfully) { } else if (!dl.IsCompletedSuccessfully) {
Log($"Hang on processing {guild.Id}. Skipping."); Log($"Task for guild {guild.Id} is unresponsive. Skipping guild. Members: {guild.MemberCount}. Name: {guild.Name}.");
lock (_failedDownloads) _failedDownloads.Add(guild.Id); lock (_failedDownloads) _failedDownloads.Add(guild.Id);
continue; continue;
} }

View file

@ -5,7 +5,7 @@
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Version>3.4.7</Version> <Version>3.4.8</Version>
<Authors>NoiTheCat</Authors> <Authors>NoiTheCat</Authors>
</PropertyGroup> </PropertyGroup>