Skip to content
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

LoggingLevelSwitch Not Switching at the Run Time #452

Open
balaji222528 opened this issue Mar 12, 2025 · 2 comments
Open

LoggingLevelSwitch Not Switching at the Run Time #452

balaji222528 opened this issue Mar 12, 2025 · 2 comments
Labels

Comments

@balaji222528
Copy link

Hi Team,
I have a requirement of switching the Minimum Log level at Run time .

consider in a MAUIProgram.Cs ham registering log like this

void RegisteRLog(IServiceCollection service collection, Configuration configuration)
{
LoggerConfiguration config = New LoggerConfiguration().ReadFrom.Configuration(configuration) //Read from App settings json

Log.Logger = config.MinimumLevel.ControlledBy(LoggingServiceInstance.LevelSwitch).CreateLogger();
LoggingService loggingservice = new();
serviceCollection.Addsingleton(logging service);
service collection.AddLogging(logging=>logging.AddSerilog(dispose:true))
}

public class LoggingService:ILoggingService
{
private static readonly Lazy instance = new(()=> new LoggignService());

public static LoggingService Instance => instance.Value;

public LoggingLevelSwitch LevelSwitch{get;}

public LoggingService()
{
LevelSwitch = new LoggingLevelSwitch();
}

public void SetMinimumLevel(LogEventLevel level)
{
LevelSwitch.MinimumLevel= level;
}
}

public class SomeViewModel
{
private ILoggingService _Loggingservice;
public SomeViewWmodel(ILoggingervice LoggingService)
{
_Loggingservice = LoggingService;
}

private void button click()
{
LogeventLevel level = LogEventLevel.Debug;
_loggingservice. SetMinimumLevel(level);
_log.LogDebug("test") // this line not printed.
}
}

Based on the above code iam not seeing the switch happening here at the run time and still the MinimumLevel in the. _log in the DI shows to the Information which is default. Not sure what is missing here. Any help Appreciated.

@nblumhardt
Copy link
Member

Hi! This one will be better for Stack Overflow's format - the serilog tag over there should get some eyes on it. HTH

@balaji222528
Copy link
Author

Using logging level switch some times is not printing the seri logs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants