log.php 600 B

1234567891011121314151617181920212223242526272829
  1. <?php /**
  2. * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
  3. * This file is licensed under the Affero General Public License version 3 or later.
  4. * See the COPYING-README file.
  5. */
  6. $levels=array('Debug','Info','Warning','Error','Fatal');
  7. ?>
  8. <div id="controls">
  9. </div>
  10. <table>
  11. <?php foreach($_['entries'] as $entry):?>
  12. <tr>
  13. <td>
  14. <?php echo $levels[$entry->level];?>
  15. </td>
  16. <td>
  17. <?php echo $entry->app;?>
  18. </td>
  19. <td>
  20. <?php echo $entry->message;?>
  21. </td>
  22. <td>
  23. <?php echo $l->l('datetime',$entry->time);?>
  24. </td>
  25. </tr>
  26. <?php endforeach;?>
  27. </table>