From d895f3e4bb1813d8fcf4ef474116e2aca0fe4169 Mon Sep 17 00:00:00 2001 From: Vitaliy Date: Thu, 6 Aug 2020 20:04:04 +0300 Subject: [PATCH] Fix trace log line in checking eligibility for matching (#1927) --- ArchiSteamFarm/Statistics.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Statistics.cs b/ArchiSteamFarm/Statistics.cs index a1b46bdfd..e9b7450e3 100644 --- a/ArchiSteamFarm/Statistics.cs +++ b/ArchiSteamFarm/Statistics.cs @@ -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; }