#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::Log::Command::Begin;

use lib '/app/tools/common/lib';
use strict;
use RSApache::Response::Ajax;
use RSApache::Command;
use Common::Debug;
use base 'RSApache::Command';


sub cmd  { return "b"; }
sub area { return "log"; }

sub execute
{
	my ($self) = @_;


    my $id = $self->getParam("id");

# No need to actually do this - the command base class will log enough for us
#    debug("$id RPS::Log::Command::Begin");


	my $response = RSApache::Response::Ajax->new({});
	return $response;
}


1;
