Skip to content

Commit

Permalink
Merge pull request #17046 from unoplatform/Youssef1313/loglevel
Browse files Browse the repository at this point in the history
fix!: Change default NotImplementedLogLevel to Debug instead of Error
  • Loading branch information
jeromelaban authored Jun 10, 2024
2 parents 41dbd5a + c6efb5a commit f2534be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.Foundation/Metadata/ApiInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static bool IsEnumNamedValuePresent(string enumTypeName, string valueName
/// <summary>
/// The message log level used when a not implemented member is used at runtime, if <see cref="IsFailWhenNotImplemented"/> is false.
/// </summary>
public static LogLevel NotImplementedLogLevel { get; set; } = LogLevel.Error;
public static LogLevel NotImplementedLogLevel { get; set; } = LogLevel.Debug;

private static Type? GetValidType(string typeName)
{
Expand Down

0 comments on commit f2534be

Please sign in to comment.