summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarDoug Freed <dwfreed@mtu.edu>2015-11-29 00:49:04 +0400
committerLibravatarDoug Freed <dwfreed@mtu.edu>2015-11-29 00:49:04 +0400
commita323264eb30396afad54b1fd2891a118811b8e97 (patch)
tree31812873c2eab8d855d2f4460c626e057c1859fb
parentdfed815d7191294f6fdf8f7687676c52cbd26409 (diff)
Only dprint on_whofuckedup called when we care
-rw-r--r--lib/ASM/Event.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ASM/Event.pm b/lib/ASM/Event.pm
index 905ada8..3adfa9c 100644
--- a/lib/ASM/Event.pm
+++ b/lib/ASM/Event.pm
@@ -865,12 +865,12 @@ sub on_whoxover
sub on_whofuckedup
{
my ($conn, $event) = @_;
- ASM::Util->dprint('on_whofuckedup called!', 'sync');
if ($event->{args}->[1] eq "STATS") {
#most likely this is getting called because we did stats p too often.
#unfortunately the server doesn't let us know what exactly we called stats for.
#anyways, we don't need to do anything for this
} else { #dunno why it got called, print the data and I'll add a handler for it.
+ ASM::Util->dprint('on_whofuckedup called!', 'sync');
ASM::Util->dprint(Dumper($event), 'sync');
}
}