Remove excessive debug from new feature

As it's not needed anymore
This commit is contained in:
JustArchi
2018-12-02 06:24:36 +01:00
parent a64ce524aa
commit def23e5ba9
4 changed files with 85 additions and 51 deletions

View File

@@ -28,7 +28,7 @@ using HtmlAgilityPack;
namespace ArchiSteamFarm {
internal sealed class SteamSaleEvent : IDisposable {
private const byte MaxSingleQueuesDaily = 3; // This is mainly a pre-caution for infinite queue clearing
private const byte MaxSingleQueuesDaily = 3; // This is only a failsafe for infinite queue clearing
private readonly Bot Bot;
private readonly Timer SaleEventTimer;
@@ -39,7 +39,7 @@ namespace ArchiSteamFarm {
SaleEventTimer = new Timer(
async e => await Task.WhenAll(ExploreDiscoveryQueue(), VoteForSteamAwards()).ConfigureAwait(false),
null,
TimeSpan.FromMinutes(1) + TimeSpan.FromSeconds(Program.LoadBalancingDelay * Bot.Bots.Count), // Delay
TimeSpan.FromHours(1) + TimeSpan.FromSeconds(Program.LoadBalancingDelay * Bot.Bots.Count), // Delay
TimeSpan.FromHours(6.1) // Period
);
}