aboutsummaryrefslogtreecommitdiff
path: root/apps/audit.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/audit.php')
-rw-r--r--apps/audit.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/audit.php b/apps/audit.php
index 9863e2d..0bd560b 100644
--- a/apps/audit.php
+++ b/apps/audit.php
@@ -15,10 +15,12 @@ $isis = new IsisAudit();
// Setup database and entry number.
if ($isis) {
// Run audit.
- $result = $isis->run();
+ $isis->run();
- // Format output.
- $display->pre(print_r($result));
+ // Display log messages.
+ foreach ($isis->log as $message) {
+ $display->pre(print_r($message));
+ }
}
$display->footer();