forked from unoplatform/uno.extensions.logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOSLogLoggerProvider.cs
36 lines (31 loc) · 911 Bytes
/
OSLogLoggerProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Concurrent;
using Microsoft.Extensions.Logging;
namespace Uno.Extensions.Logging
{
/// <summary>
/// A provider of <see cref="OSLogLogger" /> instances.
/// </summary>
public class OSLogLoggerProvider : ILoggerProvider
{
private readonly ConcurrentDictionary<string, OSLogLogger> _loggers;
/// <summary>
/// Creates an instance of <see cref="OSLogLoggerProvider"/>.
/// </summary>
public OSLogLoggerProvider()
{
_loggers = new ConcurrentDictionary<string, OSLogLogger>();
}
/// <inheritdoc />
public ILogger CreateLogger(string name)
{
return _loggers.GetOrAdd(name, loggerName => new OSLogLogger(name));
}
/// <inheritdoc />
public void Dispose()
{
}
}
}