8000 remove debug statements · trilogyinteractive/coderay@19d04e4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 19d04e4

Browse files
committed
remove debug statements
1 parent 7a19124 commit 19d04e4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/coderay/scanners/liquid.rb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def scan_spaces(encoder)
3232
def scan_selector(encoder, options, match)
3333
scan_spaces(encoder)
3434
if match = scan(/in|with/)
35-
Rails.logger.debug 'DEBUG: Scanning selector'
3635
scan_spaces(encoder)
3736
encoder.text_token match, :type
3837
if delimiter = scan(/:/)
@@ -47,7 +46,6 @@ def scan_selector(encoder, options, match)
4746
end
4847

4948
def scan_directive(encoder, options, match)
50-
Rails.logger.debug 'DEBUG: Scanning directive'
5149
encoder.text_token match, :key
5250
state = :liquid
5351
scan_spaces(encoder)
@@ -97,7 +95,6 @@ def scan_output_filters(encoder, options, match)
9795
end
9896

9997
def scan_output(encoder, options, match)
100-
Rails.logger.debug 'DEBUG: Scanning output'
10198
encoder.text_token match, :key
10299
state = :liquid
103100
scan_spaces(encoder)
@@ -115,7 +112,6 @@ def scan_output(encoder, options, match)
115112
end
116113

117114
def scan_tokens(encoder, options)
118-
Rails.logger.debug "DEBUG: Scan started: #{self.string}"
119115
state = :initial
120116

121117
until eos?

0 commit comments

Comments
 (0)
0