Skip to content

Commit

Permalink
Merge pull request #3 from MattMofDoom/dev
Browse files Browse the repository at this point in the history
v1.2.5
  • Loading branch information
MattMofDoom authored Apr 30, 2021
2 parents f324c04 + dec0f84 commit 974c822
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Seq.App.EventTimeout/EventTimeoutReactor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ protected override void OnAttached()
LogEvent(LogEventLevel.Debug, "Validate Exclude Days of Month {excludedays} ...", ExcludeDaysOfMonth);
_excludeDays = Dates.getDaysOfMonth(ExcludeDaysOfMonth, StartTime, startFormat);
if (_diagnostics)
if (_includeDays.Count > 0)
LogEvent(LogEventLevel.Debug, "Exclude UTC Days of Month: {includedays} ...", _excludeDays.ToArray());
if (_excludeDays.Count > 0)
LogEvent(LogEventLevel.Debug, "Exclude UTC Days of Month: {excludedays} ...", _excludeDays.ToArray());
else
LogEvent(LogEventLevel.Debug, "Exclude UTC Days of Month: NONE ...");

Expand Down
5 changes: 3 additions & 2 deletions Seq.App.EventTimeout/Seq.App.EventTimeout.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Copyright></Copyright>
<VersionSuffix>$([System.DateTime]::UtcNow.ToString(mmff))</VersionSuffix>
<!--<AssemblyVersion>1.2.3.0</AssemblyVersion>-->
<Version>1.2.4</Version>
<Version>1.2.5</Version>
<AssemblyVersion Condition=" '$(VersionSuffix)' == '' ">$(Version).1</AssemblyVersion>
<AssemblyVersion Condition=" '$(VersionSuffix)' != '' ">$(Version).$(VersionSuffix)</AssemblyVersion>
<FileVersion Condition=" '$(VersionSuffix)' == '' ">$(Version).0</FileVersion>
Expand All @@ -25,7 +25,8 @@
<PackageIcon>alert.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>* Reset _errorCount on successful retrieval of holidays
* Make exclusion logging clearer</PackageReleaseNotes>
* Make exclusion logging clearer
* Correct exclude days log at startup</PackageReleaseNotes>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>
Expand Down

0 comments on commit 974c822

Please sign in to comment.