Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/08 16:08:44 (16 years ago)
Author:
kgrading
Message:

Continued work on ticket (#365) + created a Job Interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Common/TestJob.cs

    r770 r779  
    2424using System.Linq;
    2525using System.Text;
     26using System.Diagnostics;
    2627
    2728namespace HeuristicLab.Hive.Client.Common {
     
    3334        if (abort == true) {
    3435          Logging.getInstance().Info(this.ToString(), "Job Processing aborted");
    35           //Console.WriteLine("Job Abort Processing");
     36          Debug.WriteLine("Job Abort Processing");
    3637          break;
    3738        }
    3839        Logging.getInstance().Info(this.ToString(), "Iteration " + x + " done");
    39         //Console.WriteLine("Iteration " + x + " done");
     40        Debug.WriteLine("Iteration " + x + " done");
    4041      }     
    4142      OnJobStopped();
Note: See TracChangeset for help on using the changeset viewer.