Skip to content

Commit 140959c

Browse files
committed
Merge pull request #1972 from tony/patch-1
Fix DEBUG print template
2 parents 213339a + a8a3a0e commit 140959c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/environment.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ namespace Sass {
180180
if (!ends_with(i->first, "[f]") && !ends_with(i->first, "[f]4") && !ends_with(i->first, "[f]2")) {
181181
std::cerr << prefix << std::string(indent, ' ') << i->first << " " << i->second;
182182
if (Value* val = dynamic_cast<Value*>(i->second))
183-
{ std::cerr << " : " << val->to_string(true, 5); }
183+
{ std::cerr << " : " << val->to_string(); }
184184
std::cerr << std::endl;
185185
}
186186
}

0 commit comments

Comments
 (0)