librenms-librenms/includes/html/print-syslog.inc.php

18 lines
703 B
PHP
Raw Normal View History

<?php
2015-07-13 20:10:26 +02:00
if (device_permitted($entry['device_id'])) {
$syslog_output .= '<tr>';
2015-07-13 20:10:26 +02:00
// Stop shortening hostname. Issue #61
// $entry['hostname'] = shorthost($entry['hostname'], 20);
if ($vars['page'] != 'device') {
$syslog_output .= '<td>'.$entry['date'].'</td>
<td><strong>'.generate_device_link($entry).'</strong></td>
2016-02-17 13:59:58 +00:00
<td><strong>'.$entry['program'].' : </strong> '.htmlspecialchars($entry['msg']).'</td>';
} else {
2016-02-17 13:59:58 +00:00
$syslog_output .= '<td><i>'.$entry['date'].'</i>&nbsp;&nbsp;&nbsp;<strong>'.$entry['program'].'</strong>&nbsp;&nbsp;&nbsp;'.htmlspecialchars($entry['msg']).'</td>';
2015-07-13 20:10:26 +02:00
}
$syslog_output .= '</tr>';
}