question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

(Question) Usage in class library

See original GitHub issue

Type (choose one):

  • Question

Hi!

This is a question more around how this package should be integrated with class libraries consumed via NuGet. I maintain a project over at https://github.com/techyian/MMALSharp, and I’ve just finished adding Microsoft.Extensions.Logging.Abstractions so I’m not forcing users to use NLog (as was the case previously). The way I’ve wired up the logging can be found here, and I’m using factory.AddNLog().AddSerilog(); when configuring the ILoggerFactory. This works well, and I’ve opened up the LoggerFactory property so if users want to override the factory being used with their own instance (for example if they just want to use Microsoft.Extensions.Logging with a console provider) then they can.

I just wanted to learn from you whether this is the correct way of approaching this?

Thank you 😃

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:8 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
snakefootcommented, Dec 29, 2019

Another example is TorrentCore that has embraced dependency injection completely and creates all its objects using IServiceProvider:

https://github.com/SamuelFisher/torrentcore

This of course introduces an extra dependency, since it now relies on Microsoft Extension Logging AND Microsoft Dependency Injection

1reaction
snakefootcommented, Dec 29, 2019

I guess only Microsoft are following their own ideal guidelines 😃

For example MassTransit expects people to assign the custom ILoggerFactory before creating the instance:

https://masstransit-project.com/getting-started/upgrade-v6.html#logging

If I was lazy then I would probably create a custom implementation of ILogger similar to this:

public static class MMALLog
{
     public static Microsoft.Extensions.Logging.ILogger Logger => _logger;
     private static readonly MMALLogger _logger = new MMALLogger();

     public static ILoggerFactory LoggerFactory
     {
         get => _logger.LoggerFactory;
         set => _logger.LoggerFactory = value;
     }

     class MMALLogger : ILogger
     {
            public ILoggerFactory LoggerFactory 
            {
                get { return _loggerFactory; }
                set
                {
                    _loggerFactory = value;
                    _logger = null;
                } 
            }
            private ILoggerFactory _loggerFactory;
            private ILogger _logger;
            private ILogger Logger => _logger ?? (_logger = _loggerFactory?.CreateLogger("MMALSharp"));

            IDisposable ILogger.BeginScope<TState>(TState state)
            {
                return Logger?.BeginScope(state);
            }

            bool ILogger.IsEnabled(LogLevel logLevel)
            {
                return Logger?.IsEnabled(logLevel) ?? false;
            }

            void ILogger.Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
            {
                Logger?.Log(logLevel, eventId, state, exception, formatter);
            }
     }
}

Then users just need to assign this property before using your library:

MMALSharp.Common.Utility.MMALLog.LoggerFactory = myLoggerFactory;

Then just leave everything as before without changing anything else.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Using classes in Class library project
For .netstandard (and .net core), use System.Drawing.Common : stackoverflow.com/questions/46722409/… – Yom B.
Read more >
c# - Should I keep all my class definitions in the same ...
I am starting to work with class libraries in my C# class. We were told to write code that can be used more...
Read more >
Tutorial: Create a .NET class library using Visual Studio
In this tutorial, you create a simple class library that contains a single string-handling method. A class library defines types and methods ...
Read more >
Solved In this project you will be developing a class
In this project you will be developing a class library for some Question classes that can be used to create different types of...
Read more >
In this project you will be developing a class library for ...
There are 3 classes created based on the UML diagram, namely Question, TFQuestion and SAQuestion. Question is the parent class or super class....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found