Free cookie consent management tool by TermsFeed Policy Generator

Changeset 411 for trunk


Ignore:
Timestamp:
07/30/08 13:47:47 (16 years ago)
Author:
gkronber
Message:

implemented #210 (Trace exceptions from the engine at the grid-clients to ease debugging of the grid infrastructure)

File:
1 edited

Legend:

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

    r383 r411  
    2727using System.Xml;
    2828using System.Threading;
     29using System.Diagnostics;
    2930
    3031namespace HeuristicLab.Grid {
     
    6364        try {
    6465          next = atomicOperation.Operator.Execute(atomicOperation.Scope);
    65         } catch(Exception) {
     66        } catch(Exception ex) {
     67          Trace.TraceWarning("Exception while executing an engine.\n" + ex.Message + "\n" + ex.StackTrace);
    6668          // push operation on stack again
    6769          myExecutionStack.Push(atomicOperation);
Note: See TracChangeset for help on using the changeset viewer.