/[projects]/dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/tasks/Task.java
ViewVC logotype

Diff of /dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/tasks/Task.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2991 by torben, Fri Feb 5 11:09:02 2016 UTC revision 2992 by torben, Tue Mar 29 19:19:11 2016 UTC
# Line 72  public abstract class Task implements Ru Line 72  public abstract class Task implements Ru
72                  logger.info("Done " + this.getDescription() + "   " + timing.getElapsed() + "ms");                  logger.info("Done " + this.getDescription() + "   " + timing.getElapsed() + "ms");
73                                    
74                  logMessages = TaskLogger.getInstance().getBuffer();                  logMessages = TaskLogger.getInstance().getBuffer();
75                    
76                    
77                    // Make some delay between tasks to make sure that the VM settles and other contexts can perform their tasks as well
78                    try {
79                            Thread.sleep(60*1000);
80                    } catch (InterruptedException e) {
81                            e.printStackTrace();
82                    }
83                    
84          }          }
85                    
86          public final String getLog() {          public final String getLog() {

Legend:
Removed from v.2991  
changed lines
  Added in v.2992

  ViewVC Help
Powered by ViewVC 1.1.20