Fix trace log line in checking eligibility for matching (#1927)

This commit is contained in:
Vitaliy
2020-08-06 20:04:04 +03:00
committed by GitHub
parent e8b7d7d908
commit d895f3e4bb

View File

@@ -282,7 +282,7 @@ namespace ArchiSteamFarm {
// Bot must have at least one accepted matchable type set
if ((Bot.BotConfig.MatchableTypes.Count == 0) || Bot.BotConfig.MatchableTypes.All(type => !AcceptedMatchableTypes.Contains(type))) {
Bot.ArchiLogger.LogGenericTrace(string.Format(Strings.WarningFailedWithError, nameof(Bot.BotConfig.MatchableTypes) + ": " + Bot.BotConfig.MatchableTypes));
Bot.ArchiLogger.LogGenericTrace(string.Format(Strings.WarningFailedWithError, nameof(Bot.BotConfig.MatchableTypes) + ": " + string.Join(", ", Bot.BotConfig.MatchableTypes)));
return false;
}