From 76843dab59f813aa8c0b5749cd8ee1ddbe1b03d8 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 18 Apr 2002 00:31:26 +0000 Subject: [PATCH] Report the contents of the set when we try to update an element that's not in it. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1273 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/dobj/EntryUpdatedEvent.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/presents/dobj/EntryUpdatedEvent.java b/src/java/com/threerings/presents/dobj/EntryUpdatedEvent.java index d2e68fa25..deb82947d 100644 --- a/src/java/com/threerings/presents/dobj/EntryUpdatedEvent.java +++ b/src/java/com/threerings/presents/dobj/EntryUpdatedEvent.java @@ -1,5 +1,5 @@ // -// $Id: EntryUpdatedEvent.java,v 1.5 2002/03/18 23:21:26 mdb Exp $ +// $Id: EntryUpdatedEvent.java,v 1.6 2002/04/18 00:31:26 mdb Exp $ package com.threerings.presents.dobj; @@ -92,7 +92,8 @@ public class EntryUpdatedEvent extends TypedEvent // update the entry if (!set.update(_entry)) { // complain if we didn't update anything - Log.warning("No matching entry to update " + this + "."); + Log.warning("No matching entry to update [entry=" + this + + ", set=" + set + "]."); return false; }