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

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


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

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


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

#    debug("$id RPS::Log::Command::End");


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


1;
