possible fix for .gitlab-ci.yml and some small

This commit is contained in:
Kwoth
2021-12-27 08:34:47 +01:00
parent 1b0392dfab
commit 89c2cda9ec
3 changed files with 88 additions and 88 deletions

View File

@@ -312,7 +312,7 @@ dotnet_naming_style.camel_case.capitalization = camel_case
dotnet_diagnostic.ca1822.severity = suggestion
# IDE0004: Cast is redundant
dotnet_diagnostic.ide0004.severity = error
dotnet_diagnostic.ide0004.severity = warning
# IDE0058: Expression value is never used
dotnet_diagnostic.ide0058.severity = none

View File

@@ -23,6 +23,6 @@ int? totalShards = null; // 0 to read from creds.yml
// }
LogSetup.SetupLogger(shardId);
Log.Information($"Pid: {pid}");
Log.Information("Pid: {ProcessId}", pid);
await new Bot(shardId, totalShards).RunAndBlockAsync();