Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/22/09 14:15:52 (15 years ago)
Author:
epitzer
Message:

Rename config property to adhere to coding conventions. (#524)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tracing/3.2/Logger.cs

    r1530 r1622  
    1515      if ( IsConfigured ) return;
    1616      IsConfigured = true;
    17       if (string.IsNullOrEmpty(Settings.Default.log4netConfigFile)) {
    18         Settings.Default.log4netConfigFile =
     17      if (string.IsNullOrEmpty(Settings.Default.TracingLog4netConfigFile)) {
     18        Settings.Default.TracingLog4netConfigFile =
    1919          Path.Combine(
    2020            PluginInfrastructure.Properties.Settings.Default.PluginDir,
     
    2222      }
    2323      XmlConfigurator.ConfigureAndWatch(
    24         new FileInfo(Settings.Default.log4netConfigFile));
     24        new FileInfo(Settings.Default.TracingLog4netConfigFile));
    2525      Info("logging initialized " + DateTime.Now);
    2626    }
Note: See TracChangeset for help on using the changeset viewer.