Это было проще, чем я думал. Я отслеживаю TraceSources и устанавливаю их уровень коммутации, когда пользователь хочет, чтобы он изменился.
private static void SetLogLevel(TraceSource traceSource, LogLevel logLevel)
{
switch (logLevel)
{
case LogLevel.Verbose:
traceSource.Switch.Level = SourceLevels.Verbose;
break;
case LogLevel.Information:
traceSource.Switch.Level = SourceLevels.Information;
break;
case LogLevel.Warning:
traceSource.Switch.Level = SourceLevels.Warning;
break;
case LogLevel.Error:
traceSource.Switch.Level = SourceLevels.Error;
break;
case LogLevel.Critical:
traceSource.Switch.Level = SourceLevels.Critical;
break;
default:
throw new ArgumentOutOfRangeException("logLevel");
}
}
Я также пишу в файле конфигурации, чтобы при следующем запуске службы tracesource получал тот же уровень коммутации.
public TraceSourceConfiguration SetLogConfiguration(TraceSourceConfiguration traceSourceConfiguration)
{
lock (_lock)
{
Configuration appConfig = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigurationSection configurationSection = appConfig.GetSection(ConfigurationSectionName);
PropertyInformation traceSourceSection =
configurationSection.ElementInformation.Properties[TraceSourcesSectionName];
if (traceSourceSection != null)
{
ConfigurationElementCollection traceSources =
(ConfigurationElementCollection)traceSourceSection.Value;
foreach (ConfigurationElement traceSource in traceSources)
{
string name = (string)traceSource.ElementInformation.Properties[LogLevelNameElementName].Value;
if (traceSourceConfiguration.Name == name)
{
traceSource.ElementInformation.Properties[LogLevelValueElementName].Value =
traceSourceConfiguration.SwitchValue;
appConfig.Save();
ConfigurationManager.RefreshSection(ConfigurationSectionName);
TraceSourceHandler.SetTraceSourceSwitchLevel(traceSourceConfiguration.Name, traceSourceConfiguration.SwitchValue);
return traceSourceConfiguration;
}
}
}
return null;
}
}