diff --git a/projects/samskivert/src/java/com/samskivert/util/RepeatCallTracker.java b/projects/samskivert/src/java/com/samskivert/util/RepeatCallTracker.java index 9fb1f701..50c3f6ba 100644 --- a/projects/samskivert/src/java/com/samskivert/util/RepeatCallTracker.java +++ b/projects/samskivert/src/java/com/samskivert/util/RepeatCallTracker.java @@ -3,6 +3,8 @@ package com.samskivert.util; +import java.util.Date; + import com.samskivert.Log; /** @@ -28,7 +30,8 @@ public class RepeatCallTracker public boolean checkCall (String warning) { if (_firstCall == null) { - _firstCall = new Exception("---- First call ----"); + _firstCall = new Exception( + "---- First call (at " + new Date() + ") ----"); return false; }