-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapache-error.tmLanguage
More file actions
59 lines (59 loc) · 1.49 KB
/
apache-error.tmLanguage
File metadata and controls
59 lines (59 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
<array>
<string>log</string>
</array>
<key>name</key>
<string>Apache error log</string>
<key>patterns</key>
<array>
<dict>
<key>comment</key>
<string>IP address</string>
<key>match</key>
<string>(\d{1,3}\.){3}\d{1,3}</string>
<key>name</key>
<string>entity.name.text.apache-error</string>
</dict>
<dict>
<key>comment</key>
<string>Error</string>
<key>match</key>
<string>error|warn</string>
<key>name</key>
<string>keyword.text.apache-error</string>
</dict>
<dict>
<key>comment</key>
<string>Important</string>
<key>match</key>
<string>PHP (Fatal error|Warning|Notice)</string>
<key>name</key>
<string>string.text.apache-error</string>
</dict>
<dict>
<key>comment</key>
<string>Note</string>
<key>match</key>
<string>on line \d+|referer:|^\[[a-zA-Z :0-9]+\]</string>
<key>name</key>
<string>support.function.text.apache-error</string>
</dict>
<dict>
<key>comment</key>
<string>Action</string>
<key>match</key>
<string>Initializing|Registered|Ignoring|Disabling|mapping</string>
<key>name</key>
<string>constant.support.text.apache-error</string>
</dict>
</array>
<key>scopeName</key>
<string>text.apache-error</string>
<key>uuid</key>
<string>2345756b-e633-4233-9772-d5c73f7ef27e</string>
</dict>
</plist>