blob: edab37918568dd9dc169cc12efe81d580bf4f401 [file] [log] [blame]
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/evt_log.class.php");
$EventLog = new EvtLog();
$EventLog->setLogTable("__paypal.class"); // To make browsing the log table easier
$EventLog->setPK1('test');
$EventLog->setPK2($_SERVER['REMOTE_ADDR']);
$EventLog->setLogAction("one");
$EventLog->insertModLog('two');
print_r('done');
?>