Skip to content

Commit

Permalink
Adjust warn threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
KC3PIB authored and KC3PIB committed Mar 24, 2022
1 parent 4b396b7 commit b25aec7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public int ReportRetrievalPeriodSeconds
{
get => _reportRetrievalPeriodSeconds; set
{
if (value < 500)
Log.Warning("The current PskReporterSettings.ReportRetrievalPeriodSeconds value of {value} is less than 500 seconds, is not recommended, and will likely result in the requests being rejected for abuse. Phil, of PSK Reporter, has created a service of enormous importance to the amateur radio community, don't be a lid", value);
if (value < 300)
Log.Warning("The current PskReporterSettings.ReportRetrievalPeriodSeconds value of {value} is less than 300 seconds, is not recommended, and will likely result in the requests being rejected for abuse. Phil, of PSK Reporter, has created a service of enormous importance to the amateur radio community, don't be a lid", value);
_reportRetrievalPeriodSeconds = value;
}
}
Expand Down

0 comments on commit b25aec7

Please sign in to comment.