<?php // -*- tab-width: 3; indent-tabs-mode: 1; -*-
/*
* $Id: log.php,v 1.6 2003/05/14 15:30:39 andras Exp $
* Created for the StreamOnTheFly project (IST-2001-32226)
* Authors: András Micsik, Máté Pataki, Tamás Déri
* at MTA SZTAKI DSD, http://dsd.sztaki.hu
*/
require("config.inc.php");
require($config['classdir'] . '/sotf_Utils.class.php');
?>
<html>
<head><title><?php echo $config['nodeId']?> log</title></head>
<body onChange="window.focus()">
<?php
/* This is for remote view of log file */
$full = sotf_Utils::getParameter("full");
$lines = sotf_Utils::getParameter("lines");
if(!$lines || !is_numeric($lines))
$lines = 700;
if($full) {
echo "<pre>";
readfile($config['logFile']);
echo "</pre>";
} else {
echo "<pre>";
//echo implode("\n", sotf_Utils::tail($config['logFile'], $lines));
sotf_Utils::tail($config['logFile'], $lines * 80);
//system("tail -$lines $config['logFile']");
echo "</pre>";
}
echo "<a name=\"end\"></a>";
?>