From 2e7c1e6327b2d9b00cc88745868abd323b6a6260 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sat, 30 Jun 2018 23:17:16 +0200 Subject: [PATCH] Misc logging --- ArchiSteamFarm/Bot.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index ade4e4039..3fd92ab8d 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -2373,6 +2373,7 @@ namespace ArchiSteamFarm { ItemsCount = notification.Value; if (newItems) { + ArchiLogger.LogGenericTrace(nameof(ArchiHandler.UserNotificationsCallback.EUserNotification.Items)); Utilities.InBackground(CardsFarmer.OnNewItemsNotification); if (BotConfig.BotBehaviour.HasFlag(BotConfig.EBotBehaviour.DismissInventoryNotifications)) { @@ -2386,6 +2387,7 @@ namespace ArchiSteamFarm { TradesCount = notification.Value; if (newTrades) { + ArchiLogger.LogGenericTrace(nameof(ArchiHandler.UserNotificationsCallback.EUserNotification.Trading)); Utilities.InBackground(Trading.OnNewTrade); }