summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index d105dd005..bbd4d1087 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3913,6 +3913,7 @@ sub groups_in {
sub in_group {
my ($self, $group) = @_;
+ print STDERR 'bug ' . $self->id . " (" . $group->name . ")\n";
return grep($_->id == $group->id, @{$self->groups_in}) ? 1 : 0;
}