mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
Comment out verbose log message
This commit is contained in:
@@ -35,10 +35,10 @@ static void rb_variable_lax_parse(VALUE self, VALUE markup)
|
||||
|
||||
if( !reti ){
|
||||
/* Extract name */
|
||||
printf("\nWith the whole expression, a matched substring %.*s is found at position %d to %d. "
|
||||
" and rest at %.*s is found at position %d to %d.\n",
|
||||
match[1].rm_eo - match[1].rm_so, &variable->markup[match[1].rm_so], match[1].rm_so, match[1].rm_eo,
|
||||
match[2].rm_eo - match[2].rm_so, &variable->markup[match[2].rm_so], match[2].rm_so, match[2].rm_eo);
|
||||
// printf("\nWith the whole expression, a matched substring %.*s is found at position %d to %d. "
|
||||
// " and rest at %.*s is found at position %d to %d.\n",
|
||||
// match[1].rm_eo - match[1].rm_so, &variable->markup[match[1].rm_so], match[1].rm_so, match[1].rm_eo,
|
||||
// match[2].rm_eo - match[2].rm_so, &variable->markup[match[2].rm_so], match[2].rm_so, match[2].rm_eo);
|
||||
|
||||
variable->name = &variable->markup[match[1].rm_so];
|
||||
variable->name_len = match[1].rm_eo - match[1].rm_so;
|
||||
|
||||
Reference in New Issue
Block a user