From 0c863cefad198e070d58003900abb2c37d45da65 Mon Sep 17 00:00:00 2001 From: mdb Date: Fri, 20 Aug 2004 17:59:34 +0000 Subject: [PATCH] Record and report the time of the first call. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1494 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/util/RepeatCallTracker.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; }