Free cookie consent management tool by TermsFeed Policy Generator

Changeset 401


Ignore:
Timestamp:
07/29/08 17:54:02 (16 years ago)
Author:
gkronber
Message:

added tracing to event-log to simplify debugging of grid infrastructure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Grid/ServerForm.cs

    r264 r401  
    3232using HeuristicLab.PluginInfrastructure;
    3333using System.Net;
     34using System.Diagnostics;
    3435
    3536namespace HeuristicLab.Grid {
     
    5859
    5960    private void Start() {
     61      Trace.Listeners.Clear();
     62      Trace.Listeners.Add(new EventLogTraceListener("HeuristicLab.Grid"));
     63
    6064      externalHost = new ServiceHost(server, new Uri(externalAddressTextBox.Text));
    6165      internalHost = new ServiceHost(jobStore, new Uri(internalAddressTextBox.Text));
Note: See TracChangeset for help on using the changeset viewer.