Skip to content

Commit

Permalink
Unifies package name and namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
JudahGabriel committed Jan 13, 2024
1 parent fa909db commit c15fc89
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/DocumentStoreExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections.Generic;
using System.Text;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// Extensions for IDocumentStore that aid in Raven.StructuredLogger.
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/ExceptionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Reflection;
using System.Text;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// Extensions for stringifying exceptions.
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/Log.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using System.Linq;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// A log event. These are typically stored within a <see cref="StructuredLog"/>.
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/LogOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// Options for configuring Raven.StructuredLog.
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/LoggerExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System;
using System.Collections.Generic;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// Adds RavenStructuredLog-specific extensions to <see cref="ILogger"/> and <see cref="ILoggingBuilder"/>.
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/RavenDB.StructuredLogger.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>Upgrades to .NET 8, Raven 6</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RootNamespace>Raven.StructuredLog</RootNamespace>
<RootNamespace>Raven.StructuredLogger</RootNamespace>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/RavenStructuredLogScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Reactive.Subjects;
using System.Text;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
internal class RavenStructuredLogScope : IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/RavenStructuredLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using System.Runtime.CompilerServices;
using System.Text;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// Log provider that sends messages to RavenDB asynchronously.
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/RavenStructuredLoggerProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Raven.Client.Documents;
using System;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// Logging provider that structures and groups logs and stores them in RavenDB.
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/ServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.Extensions.Configuration;
using Raven.Client.Documents;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
///
Expand Down
2 changes: 1 addition & 1 deletion RavenDB.StructuredLogger/StructuredLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections.Generic;
using System.Linq;

namespace Raven.StructuredLog
namespace Raven.StructuredLogger
{
/// <summary>
/// A structured log containing one or more log instances.
Expand Down
2 changes: 1 addition & 1 deletion Sample/Common/RavenExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Raven.Client.Documents;
using Raven.StructuredLog;
using Raven.StructuredLogger;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion Sample/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Raven.StructuredLog;
using Raven.StructuredLogger;
using Sample.Models;
using System;
using System.Diagnostics;
Expand Down
2 changes: 1 addition & 1 deletion Sample/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Raven.Client.Documents;
using Raven.StructuredLog;
using Raven.StructuredLogger;
using Sample.Common;

namespace Sample
Expand Down

0 comments on commit c15fc89

Please sign in to comment.