Coder Social home page Coder Social logo

Comments (6)

nblumhardt avatar nblumhardt commented on July 19, 2024

Hi John, thanks for the note. Can you please post a snippet of the logging method call, and a sketch of the output you'd expect? Thanks!

from serilog-extensions-logging.

JohnRusk avatar JohnRusk commented on July 19, 2024

I made a wrapper around the Microsoft ILogger, which I'm calling PrefixedLogger. See code below.

So if I do this:
var p = new PrefixedLogger(existingILogger, "foo "); p.LogInformation("bar");

I would expect the output, to the LiterateConsole, to look like:

[13:41:00 INF] foo bar

Effectively I'm trying to simulate a poor-man's version of Serilog's ".ForContext", while keeping my application code dependent only on the Microsoft.Extensions.Logging.ILogger interface. (That means I can't call ForContext directly.)

Breakpoints on the following confirm that augmentedFormatter is never called:

`
public class PrefixedLogger: Microsoft.Extensions.Logging.ILogger
{
private readonly ILogger _innerLogger;
private readonly string _prefix;

public PrefixedLogger(ILogger innerLogger, string prefix)
{
    _innerLogger = innerLogger;
    _prefix = prefix;
}

public IDisposable BeginScope<TState>(TState state)
{
    return _innerLogger.BeginScope(state);
}

public bool IsEnabled(LogLevel logLevel)
{
    return _innerLogger.IsEnabled(logLevel);
}

public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception,Func<TState, Exception, string> formatter)
{
    // construct a formatter that adds our desired prefix to everything 
    Func<TState, Exception, string> augmentedFormatter = (s,e) => _prefix + formatter(s, e);

     _innerLogger.Log(logLevel, eventId, state, exception, augmentedFormatter);
}

}

`

from serilog-extensions-logging.

nblumhardt avatar nblumhardt commented on July 19, 2024

Hi @JohnRusk - sorry about the quiet on this one, with custom wrapper code it's hard to tell what's going on at a glance, and thus a bit tricky to make any useful suggestions.

If you still need a hand with this, or think there's a bug in the provider, please do let us know and we'll reopen. Thanks!

from serilog-extensions-logging.

rf0ster avatar rf0ster commented on July 19, 2024

Hello @JohnRusk , I am currently having the same issue. Was there ever a resolution to your problem?

from serilog-extensions-logging.

JohnRusk avatar JohnRusk commented on July 19, 2024

from serilog-extensions-logging.

rf0ster avatar rf0ster commented on July 19, 2024

from serilog-extensions-logging.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.