Skip to content

Commit

Permalink
cleanup sflog grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
aheber committed Aug 9, 2024
1 parent caffc6e commit 47a309d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sflog/grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = grammar({

version: ($) => /\d+\.\d+/,

log_level_settings: ($) => repeat1(seq($.log_level_setting)),
log_level_settings: ($) => repeat1($.log_level_setting),

log_level_setting: ($) => seq($.component, ",", $.log_level, optional(";")),

Expand Down Expand Up @@ -38,7 +38,7 @@ module.exports = grammar({
"FINEST",
),

anonymous_block: ($) => repeat1(seq(/[^\n]*: [^\n]*/)),
anonymous_block: ($) => repeat1(/[^\n]*: [^\n]*/),

log_entry: ($) =>
seq(
Expand Down

0 comments on commit 47a309d

Please sign in to comment.