From: Ivan Kohler Date: Thu, 21 Aug 2014 07:27:19 +0000 (-0700) Subject: cleanup X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=d37dd5ecb8fb35bbd79a29cc78a1d680a3f7d6c8 cleanup --- diff --git a/FS/FS/Log/Output.pm b/FS/FS/Log/Output.pm index 18d7f1b43..29f31a5d9 100644 --- a/FS/FS/Log/Output.pm +++ b/FS/FS/Log/Output.pm @@ -1,7 +1,7 @@ package FS::Log::Output; +use base qw( Log::Dispatch::Output ); -use base Log::Dispatch::Output; -use FS::Record qw( dbdef ); +use FS::log; sub new { # exactly by the book my $proto = shift; @@ -24,7 +24,7 @@ sub log_message { my ($tablename, $tablenum) = @m{'tablename', 'tablenum'}; if ( $object and $object->isa('FS::Record') ) { $tablename = $object->table; - $tablenum = $object->get( dbdef->table($tablename)->primary_key ); + $tablenum = $object->get( $object->primary_key ); # get the agentnum from the object if it has one $m{'agentnum'} ||= $object->get('agentnum');