no need for formatting

This commit is contained in:
Shish 2009-05-08 04:41:03 -07:00
parent 7648d3db67
commit 5609976164

View File

@ -117,7 +117,7 @@ class LogEvent extends Event {
$username = $context->user->name; $username = $context->user->name;
$ip = $_SERVER['REMOTE_ADDR']; $ip = $_SERVER['REMOTE_ADDR'];
$fp = fopen("shimmie.log", "a"); $fp = fopen("shimmie.log", "a");
fprintf($fp, "$ftime\t$section/$priority\t$username/$ip\t$message\n"); fputs($fp, "$ftime\t$section/$priority\t$username/$ip\t$message\n");
fclose($fp); fclose($fp);
} }
} }