Changeset 1933
- Timestamp:
- 05/28/09 17:09:44 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Tracing/3.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Tracing/3.2/HeuristicLab.Tracing-3.2.csproj
r1534 r1933 84 84 </ItemGroup> 85 85 <ItemGroup> 86 <Compile Include="HiveLogger.cs" /> 86 87 <Compile Include="Logger.cs" /> 87 88 <Compile Include="HeuristicLabTracingPlugin.cs" /> -
trunk/sources/HeuristicLab.Tracing/3.2/HiveLogger.cs
r1931 r1933 9 9 namespace HeuristicLab.Tracing { 10 10 public class HiveLogger: Logger { 11 pr ivatestatic void Configure() {11 protected new static void Configure() { 12 12 if (IsConfigured) return; 13 13 IsConfigured = true; … … 20 20 XmlConfigurator.ConfigureAndWatch( 21 21 new FileInfo(Settings.Default.TracingLog4netConfigFile)); 22 Info(" logging initialized " + DateTime.Now);22 Info("Hive Logging initialized " + DateTime.Now); 23 23 } 24 24 } -
trunk/sources/HeuristicLab.Tracing/3.2/Logger.cs
r1931 r1933 12 12 protected static bool IsConfigured = false; 13 13 14 pr ivatestatic void Configure() {14 protected static void Configure() { 15 15 if ( IsConfigured ) return; 16 16 IsConfigured = true;
Note: See TracChangeset
for help on using the changeset viewer.