Skip to content

Commit

Permalink
Release 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianstevens committed May 28, 2024
1 parent 032e7e3 commit 672aca5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
4 changes: 1 addition & 3 deletions Source/Meadow.Logging.LogProviders/Driver/CloudLogger.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using Meadow.Cloud;
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;

namespace Meadow.Logging;

Expand All @@ -27,7 +25,7 @@ public CloudLogger(LogLevel level = LogLevel.Information)

MinLevel = level;
}

/// <summary>
/// Current minimum level for the CloudLogger
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Meadow.Sdk/1.1.0">
<Project Sdk="Meadow.Sdk/1.1.0">
<PropertyGroup>
<Version>1.11.0</Version>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand All @@ -25,7 +25,4 @@
<ProjectReference Include="..\..\..\..\Meadow.Contracts\Source\Meadow.Contracts\Meadow.Contracts.csproj" />
<ProjectReference Include="..\..\Meadow.Logging\lib\Meadow.Logging.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="7.0.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/Meadow.Logging/lib/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static class MessageGroup
public const string Application = "application";
}

private LogProviderCollection _providers = new();
private readonly LogProviderCollection _providers = new();

private readonly int _startupTicks;

Expand Down
3 changes: 1 addition & 2 deletions Source/Meadow.Logging/tests/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System;
using Xunit;

namespace Meadow.Logging.Unit.Tests
Expand All @@ -11,4 +10,4 @@ public void Test1()

}
}
}
}

0 comments on commit 672aca5

Please sign in to comment.