Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.12.0 #49

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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()

}
}
}
}
Loading