Skip to content

Commit

Permalink
logging changes
Browse files Browse the repository at this point in the history
git-svn-id: svn://192.168.1.10/public/CoffeeMud@22686 0d6f1817-ed0e-0410-87c9-987e46238f29
  • Loading branch information
bozimmerman committed Jan 18, 2024
1 parent 37a4e40 commit 3760774
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions com/planet_ink/coffee_mud/Libraries/CMJournals.java
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ public void run()
me.nextEvents.clear();
nextEvents.add(nextStart);
if(CMSecurity.isDebugging(DbgFlag.CALENDAR))
Log.debugOut("Next Calendar thread will process "+nextEvents.size()+" events.");
Log.debugOut("Next Calendar thread: "+nextEvents.size()+" events.");
CMLib.threads().startTickDown(me, Tickable.TICKID_EVENT, nextStart.date()-System.currentTimeMillis(), 1);
}
else
Expand All @@ -1193,7 +1193,7 @@ public void run()
me.nextEvents.clear();
nextEvents.add(nextStart);
if(CMSecurity.isDebugging(DbgFlag.CALENDAR))
Log.debugOut("Next Calendar thread will process "+nextEvents.size()+" events.");
Log.debugOut("Next Calendar thread will handle "+nextEvents.size()+" events.");
CMLib.threads().startTickDown(me, Tickable.TICKID_EVENT, nextStart.date()-System.currentTimeMillis(), 1);
}
}
Expand Down Expand Up @@ -1335,7 +1335,7 @@ public boolean tick(final Tickable ticking, final int tickID)
processCalendarEvents();
if(CMSecurity.isDebugging(DbgFlag.CALENDAR))
Log.debugOut("Finished calendar processing for "+name());
return true;
return false; // processing ALWAYS reschedules, so KILL this one.
}

// here and below is the normal utilithread
Expand Down

0 comments on commit 3760774

Please sign in to comment.