Skip to content

Commit 6dac1b0

Browse files
authoredAug 23, 2024··
Merge pull request #390 from JayAnvers/patch-1
Update HttpAccessLog.php
2 parents 8d44a04 + 5ddbd2a commit 6dac1b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/Logs/HttpAccessLog.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class HttpAccessLog extends Log
1111
{
1212
public static string $name = 'HTTP Access';
1313
public static string $levelClass = HttpStatusCodeLevel::class;
14-
public static string $regex = '/(?P<ip>\S+) (?P<identity>\S+) (?P<remote_user>\S+) \[(?P<datetime>.+)\] "(?P<method>\S+) (?P<path>\S+) (?P<http_version>\S+)" (?P<status_code>\S+) (?P<content_length>\S+) "(?P<referrer>[^"]*)" "(?P<user_agent>[^"]*)"/';
14+
public static string $regex = '/(?P<ip>\S+) (?P<identity>\S+) (?P<remote_user>\S+) \[(?P<datetime>.+)\] "(?P<method>\S+) (?P<path>\S+) (?P<http_version>\S+)"( (?P<status_code>\S+))?( (?P<content_length>\S+))?( "(?P<referrer>[^"]*)")?( "(?P<user_agent>[^"]*)")?/';
1515
public static string $regexLevelKey = 'status_code';
1616
public static array $columns = [
1717
['label' => 'Datetime', 'data_path' => 'datetime'],

0 commit comments

Comments
 (0)
Please sign in to comment.