Skip to content

Commit 45ec4a8

Browse files
authored
Log file: Minor improvements (#2851)
1 parent f46938e commit 45ec4a8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

components/prism-log.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ Prism.languages.log = {
1616
alias: ['error', 'important']
1717
},
1818
{
19-
pattern: /\b(?:WARN|WARNING)\b/,
19+
pattern: /\b(?:WARN|WARNING|WRN)\b/,
2020
alias: ['warning', 'important']
2121
},
2222
{
23-
pattern: /\b(?:DISPLAY|INFO|NOTICE|STATUS)\b/,
23+
pattern: /\b(?:DISPLAY|INF|INFO|NOTICE|STATUS)\b/,
2424
alias: ['info', 'keyword']
2525
},
2626
{
27-
pattern: /\b(?:DEBUG|FINE)\b/,
27+
pattern: /\b(?:DBG|DEBUG|FINE)\b/,
2828
alias: ['debug', 'keyword']
2929
},
3030
{
31-
pattern: /\b(?:FINER|FINEST|TRACE|VERBOSE)\b/,
31+
pattern: /\b(?:FINER|FINEST|TRACE|TRC|VERBOSE|VRB)\b/,
3232
alias: ['trace', 'comment']
3333
}
3434
],
@@ -66,7 +66,7 @@ Prism.languages.log = {
6666
},
6767

6868
'uuid': {
69-
pattern: /\b\w{8}-\w{4}-\w{4}-\w{4}-\w{12}\b/,
69+
pattern: /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b/i,
7070
alias: 'constant'
7171
},
7272
'hash': {
@@ -83,7 +83,7 @@ Prism.languages.log = {
8383

8484
'date': {
8585
pattern: RegExp(
86-
/\b\d{4}[-/]\d{2}[-/]\d{2}T(?=\d{1,2}:)/.source +
86+
/\b\d{4}[-/]\d{2}[-/]\d{2}(?:T(?=\d{1,2}:)|(?=\s\d{1,2}:))/.source +
8787
'|' +
8888
/\b\d{1,4}[-/ ](?:\d{1,2}|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[-/ ]\d{2,4}T?\b/.source +
8989
'|' +
@@ -93,7 +93,7 @@ Prism.languages.log = {
9393
alias: 'number'
9494
},
9595
'time': {
96-
pattern: /\b\d{1,2}:\d{1,2}:\d{1,2}(?:[.,:]\d+)?(?:\s?[+-]\d{2,4}|Z)?\b/,
96+
pattern: /\b\d{1,2}:\d{1,2}:\d{1,2}(?:[.,:]\d+)?(?:\s?[+-]\d{2}:?\d{2}|Z)?\b/,
9797
alias: 'number'
9898
},
9999

components/prism-log.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)