From 22e8bb860bb9318f274c884cb51c7ecb6a6a5a0a Mon Sep 17 00:00:00 2001 From: mdb Date: Fri, 24 Jun 2005 20:34:03 +0000 Subject: [PATCH] Conform to our filterable log standard: Invarying text [varying text]. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1664 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../samskivert/src/java/com/samskivert/util/Invoker.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/util/Invoker.java b/projects/samskivert/src/java/com/samskivert/util/Invoker.java index 1c3b0df5..21283a19 100644 --- a/projects/samskivert/src/java/com/samskivert/util/Invoker.java +++ b/projects/samskivert/src/java/com/samskivert/util/Invoker.java @@ -184,11 +184,11 @@ public class Invoker extends LoopingThread // report long runners if (duration > 5000L) { - Log.warning("Invoker unit ran for '" + duration + "ms: " + - unit + "' (" + key + ")."); + Log.warning("Really long invoker unit [unit=" + unit + + " (" + key + "), time=" + duration + "ms]."); } else if (duration > 500L) { - Log.info("Invoker unit ran for '" + duration + "ms: " + - unit + "' (" + key + ")."); + Log.info("Long invoker unit [unit=" + unit + + " (" + key + "), time=" + duration + "ms]."); } } }