-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Enhance user-facing API for strongly-typed ILogger messages #36022
Comments
@lodejard After giving this a second look I wonder how much this matters given that the logger message is mostly used as an internal detail of these static methods. Would it be better to use a type as IDL for code generating one of these objects. public partial class Log
{
[LoggerMessage(LogLevel.Debug, 1, nameof(SayHello), "The program named {ProgramName} is saying hello {HelloCount} times")]
public static partial void SayHello(ILogger logger, string name, int helloCount);
} Then it would generate this: public partial class Log
{
private static readonly Action<ILogger, string, int, Exception?> _sayHello =
LoggerMessage.Define<string, int>(LogLevel.Information, new EventId(1, "SayHello"), "The program named {ProgramName} is saying hello {HelloCount} times");
public static partial void SayHello(ILogger logger, string programName, int helloCount)
{
_sayHello(logger, programName, helloCount, null);
}
} Usage would look like: // Without extension methods
Log.SayHello(logger, "Louis", 10);
// With extension methods
logger.SayHello("Louis", 10); We need partial extension methods @MadsTorgersen @jaredpar. I keep running into cases where small language limitations make the user experience slightly worse for source generators. |
I've been working on a model that uses C# 9.0 source generators. The developer writes:
And the following is generated automatically:
There is also an option to generate a wrapper type for the ILogger, rather than extension methods:
which comes out as:
I believe this code is both more convenient and more efficient than existing approaches used in the wild. |
Based on the example I provided above, I propose that we extend the framework with support to automatically generate strongly-type logging methods, based on a developer-authored interface type. The developer provides the minimum amount of information necessary, and the source generator produces a highly efficient set of logging methods. The generated logging methods can be produced as extension methods on ILogger, or can be produced as a type that wraps ILogger and exposes instance logging methods. More specifically:
I haven't contributed to this project before, but I'd be happy to learn the ropes and get something like the above checked in. |
A couple of pieces of feedback:
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class LoggerAttribute : Attribute
{
}
[AttributeUsage(System.AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public sealed class LoggerMessageAttribute : Attribute
{
public LoggerMessageAttribute(LogLevel logLevel, string formatString)
{
LogLevel = logLevel;
FormatString = formatString;
}
public LogLevel LogLevel { get; }
public string FormatString { get; }
public int? EventId { get; set; }
public string EventName { get; set; }
} In the generated code:
[Logger]
public partial class Log
{
[LogMessage(LogLevel.Debug, "The program named {ProgramName} is saying hello {HelloCount} times")]
public static partial void SayHello(ILogger logger, string name, int helloCount);
} Would generate in the same class (note that it's partial): public partial class Log
{
private static readonly Action<ILogger, string, int, Exception?> _sayHello =
LoggerMessage.Define<string, int>(LogLevel.Information, new EventId(1, "SayHello"), "The program named {ProgramName} is saying hello {HelloCount} times");
public static partial void SayHello(ILogger logger, string programName, int helloCount)
{
_sayHello(logger, programName, helloCount, null);
}
} Alternative generated code (based on the above): public partial class Log
{
private readonly struct __SayHelloStruct__ : IReadOnlyList<KeyValuePair<string, object>>
{
private readonly string programName;
private readonly int helloCount;
public __SayHelloStruct__(string programName, int helloCount)
{
this.programName = programName;
this.helloCount = helloCount;
}
public string Format()
{
return $"The program named {programName} is saying hello {helloCount} times";
}
public KeyValuePair<string, object> this[int index]
{
get
{
switch (index)
{
case 0:
return new KeyValuePair<string, object>(nameof(programName), programName);
case 1:
return new KeyValuePair<string, object>(nameof(helloCount), helloCount);
default:
throw new ArgumentOutOfRangeException(nameof(index));
}
}
}
public int Count => 1;
public IEnumerator<KeyValuePair<string, object>> GetEnumerator()
{
yield return new KeyValuePair<string, object>(nameof(programName), programName);
yield return new KeyValuePair<string, object>(nameof(helloCount), helloCount);
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
// Generated EventId from the event name
private static readonly EventId __SayHelloEventId__ = new(1, nameof(SayHello));
public static partial void SayHello(string programName, int helloCount)
{
if (__logger.IsEnabled((LogLevel)2))
{
var message = new __SayHelloStruct__(programName, helloCount);
__logger.Log((LogLevel)2, __SayHelloEventId__, message, null, (s, ex) => s.Format());
}
}
} This is more efficient than runtime/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs Line 636 in 583a536
I'd recommend we go with the more efficient codegen sacrificing code size but am open to suggestions. |
Another benefit would be that we can improve startup time by shifting to this model completely in ASP.NET Core itself (see #44746) |
How would this be consumed by non C# languages? |
@davidfowl Thanks for the excellent feedback.
|
I love the idea of using source generators to make structured logging easier. I had to implement my own mini-framework for this recently and it’s still much more work to maintain than I’d like. One blocker I ran into though is the limitation of 6 parameters in LoggerMessage.Define. I would hope a source generator solution would not be as limited in terms of structured log parameters. |
How about three attributes: [LoggerExtensions] - applied to a partial class, code generation will produce static extension methods in that class |
I like this a lot!! It's very close to something I prototyped earlier (with Castle dynamic proxy) to pitch to our team to evolve our strongly-typed logging story. I would suggest this is more like a specialization of a logger interface rather than a wrapper - so optionally inheriting Curious how much overhead there is for the message format parsing. Is that something that can be quantified or profiled? Otherwise I'd suggest Regarding EventId - totally agree! That is are very undervalued piece of data most user code leaves out. I'd suggest the method name like "SayHello" makes a perfect EventId string. In the absence of a user provided number having a stable hash of the name would be a fine EventId int. I'd suggest having the Exception parameter be either first or last rather than anywhere in the list. TBH, last would probably be most natural. In the existing LogWarning(...) overloads the Exception is first only because of how overload resolution works with variable params... (More thoughts --- need to run to meeting for now though) |
I'm not a fan of having to inject something different that I have to today. That's why I like the extension/static method approach. If we have this extension approach then I am suggest that it's optional.
Enough to affect the startup time (which we now care about more now). I'm fine with simple codegen to start but @geeknoid already it working and we can compare them. |
Makes sense - also I found enough of the old prototype code to kit together as an example. https://github.com/lodejard/logger-interfaces/blob/main/LoggerCodeGen/Program.cs TBH having analyzer codefix to turn In both cases (interface and/or extensions) I'd suggest an analyzer codefix acting on logger.LogXxxx calls could be a key part of the experience. |
I created a repo for my current work on this front: https://github.com/geeknoid/LoggingGenerator. Comments welcome. |
@lodejard What kind of heuristic are you thinking of to convert LogXXX calls to extension methods? New names need to be invented for the strongly-typed methods, so I'm not sure where those should come from. |
@geeknoid good question! At the time was thinking if the overload involved a Failing that, if it's a single In the case that you are "entire project | solution" a code-base that has only format strings the options are limited. Some possibilities as thought exercise:
Typing that out loud - I think I'd lean towards #2 actually. Even if a user didn't want to go all of the way to strongly-typed log messages, it would be a genuinely useful fixup IMO to be able to add new EventId in every log line in a solution. Especially if the analyzer could figure out the "highest visible plus one" EventId number to put in spot-by-spot.
#4 might be a stretch --- it's not a format that you expect naturally. I was thinking of it because it's the flow I would like to use myself personally. e.g. Declare any new messages inline as I'm working with minimal effort (and without switching to another file) then when I'm ready to turn the change into a PR (and done fussing with message text) I'd ctrl-dot to strongly-type all of the messages in the solution. |
@geeknoid @davidfowl to attempt a summary of strawman :) this is based on just #2 from above Step one, solution-wide fixup to eventid names where missing: Step two, every "EventName" is an error Step three, solution-wide fixup to strongly-type events |
I think the code fix and source generator complement each other but aren't directly coupled. We should focus on fleshing out the design for the source generator and then follow up with how we move existing calls to it (if possible) |
As the original author of this design, I'd like to record my objection to hurting usability of the feature by simplifying the attribute's constructor. The rationale provided above ("because it's complicated validation logic done by the generator") is not a rationale for decreasing the quality of the developer experience. Stripping the constructor doesn't yield an appreciable reduction in the generator's complexity or size. And finally, the logic has already been implemented, has 100% unit test coverage, and is already in production use in our internal version of the code. As Maryam points out above, the first selling point for this feature is "shorter and simpler syntax". By stripping all parameters from the constructor, usability suffers: [LoggerMessage(0, LogLevel.Critical, "Could not open socket to `{hostName}`")]
public partial void CouldNotOpenSocket(string hostName); bloats to: [LoggerMessage(EventId = 0, LogLevel = LogLevel.Critical, Message = "Could not open socket to `{hostName}`")]
public partial void CouldNotOpenSocket(string hostName); Why would you require a developer to type in those extra 31 characters when it is completely avoidable? When you have 20 of those logging methods declared in your app's source code, you'd be wasting 620 extra characters for not discernable reason. Please reconsider this decision. |
Regardless of the merits of the other arguments, this is not a reason we should consider when deciding on the design for this library. :-) |
This may not be coming across as I believe it was intended. One of the concerns raised, I believe by @shirhatti, was that some of the arguments that are required today may become optional "tomorrow", e.g. event id. Other arguments are already optional, like log level, depending on the signature of the logging method written. It ends up being up to the generator, examining both the attribute and the method signature, to decide whether the combination is valid, in a way we can't control just via the attribute constructor. If we decide to enable id to be optional, then we don't have a good way to do that without adding more constructors or settable properties anyway, whereas the generator can simply change its validation logic and generation strategy based on the policy du jour. Using the settable property approach is recognizing that everything is or may eventually be optional, and leaving it up to the generator to control everything around the user experience. FWIW, I don't belive it meaningfully harms the user experience. @bartonjs can correct me if I've channeled him poorly. |
Harming usability in today's experience to prevent potentially adding more constructors in the future seems like an odd trade-off to me. Constructors can be added in the future, including the no-parameter constructor. So that's really not a good motivation IMO as having improved usability today doesn't impose any constraint on the future. I consider wasteful ceremony imposed by an API to be a usability issue in general. The substantial complications added to the C# language over the years strictly for the sake of avoiding developers typing redundant ceremonious text serves as a strong testament to that point. |
It does matter if the rationale provided is "complicated logic in the generator". |
Again, this wasn't saying "oh man this is going to be hard to implement so we shouldn't expose the API we want", this was saying "the generator handles all the logic so we can expose the API we want". |
Regarding:
The constraint is currently that the logging method cannot be generic. The type the method is in can be generic, and method arguments can be of generic types. But the method itself cannot be generic. |
What leads to that constraint being necessary? I'm unclear what it prevents that couldn't be achieved via a type parameter, which is currently allowed. Hence the suggestion that both should be allowed or disallowed equally. Is there a technical limitation? |
I don't believe there is a technical problem. I didn't see the value in a generic logging method so I didn't put the extra effort necessary to parse, emit, and test this code path. This seemed like something that could clearly be added in the future if a need ever arose. You wouldn't want to complicate the generator logic prematurely, right? :-) I don't understand why it would be a good idea to say "if you can't do generic methods, than you shouldn't do generic types either". Those seem orthogonal. It's quite possible (and indeed common) for a logging method to be introduced in a generic type. But introducing a generic method by itself seems much less likely. |
In the implementation, there is a substantial difference in supporting generic types vs. generic methods. Generic types are mostly free. Support generic methods is more involved as the code generator needs to not only parse these definitions, it needs to generate a corresponding signature. So it would need to parse N generic definitions along with their corresponding constraints, and then emit them back out on the generated method. |
I feel like I need to reiterate again that, to my knowledge, no one has expressed concern about how complex the generator is.
It depends on the reason for the limitation. One reason, for example, would be that the purpose of such generated logging methods is to enforce strong typing on the structured logging, such that, for example, you could map each argument to its own database column or the like. A T parameter, regardless of whether it comes from a generic method parameter or a generic type parameter, could easily cause problems for that, with various calls each contributing their own unique type that then may not be supported by the underlying store. So if the concern were that, you'd want to ban it for any generic parameter, regardless of where it came from. Instead, you've stated that's not the reason, but rather purely an artificial constraint based on viewed demand and the difficulty of implementation. In that case, sure, there's no reason to cut off the easier thing that "just works", though I expect in the fullness of time you'll want to remove the generic method limitation as well.
Really? We do that in a variety of places. For example, we want a semi-structured trace logging method that can be used to trace out messages in a large number of places, with some arguments fixed for all tracing sites and some variable, e.g. Log(httpConnectionPool, httpConnection, "Trace: {0}", additionalData); where additionalData may be a value type. We don't want to add overloads for every possible T that additionalData may be, nor do we want to have to add guard calls around every use of Log to prevent additionalData from being boxed. If this That said, for the particular cases where the above arises, we're much more likely to use C# 10 interpolation support, write: Log(ttpConnectionPool, httpConnection, $"Trace: {additionalData}"); and then not only avoid boxing for additionalData, but also not have to add a guard at the call site even if additionalData is actually a complicated and potentially expensive expression. Which is to say, I believe there are uses, but we ourselves in the core libraries aren't going to use this mechanism, so this feedback is about use cases rather than strong need. If we can't support generic method parameters right now because it actually is too complex for the generator right now and we want to wait for further feedback before investing in it, that's reasonable. |
Does the source generator only target the
|
Note that this is a sealed attribute |
Oh I missed that. So I think what I'm asking is that could it not be sealed so the users could customize their own log attribute? |
@Kahbazi, I think that's an intriguing idea, but it wouldn't 'just work' I think. Given how attributes are parsed, there's dedicated logic that looks at ctor parameters or properties, etc. Maybe there's a way to write attribute parsing logic that is inherently more generic in nature and could tolerate inheritance like that, but that's now how the source generator works at the moment. |
@lodejard the logging generator got submitted into Microsoft.Extensions.Logging package version 6.0.0-preview.4.21216.3, |
Is your feature request related to a problem? Please describe.
I'm trying to declare a strongly-typed code path for ILogger messages, but it is difficult to use the
Action
-returning static methodLoggerMessage.Define<T1,T2,...,Tn>
in a way that's approachable and maintainable by an entire team.Describe the solution you'd like
It would be great if there was a strongly-typed struct which could wrap the underlying
LoggerMessage.Define
call andAction<ILoggerFactory, ...., Exception>
field - even completely hide the actualAction
signature. Ideally it would also provide more appropriate intellisense on the struct method which calls the action. If would be even cleaner if it could be initialized without repeating the generic argument types, and in most end-user applications if the EventId number was optional it could be derived from the EventId name instead.A LogMessage struct would be a allocation-free. Having implicit operators for tuples which match the constructor parameters enables field initialization without needing to repeat the generic argument types.
Describe alternatives you've considered
Having one struct per LogLevel could also remove the need to have the first "LogLevel" argument in the initializer - but that would be a larger number of classes and intellisense wouldn't list the level names for you like typing
LogLevel.
doesThe text was updated successfully, but these errors were encountered: