diff --git a/src/debug/printing/printable.cpp b/src/debug/printing/printable.cpp index 1ec2bb9..ca3410c 100644 --- a/src/debug/printing/printable.cpp +++ b/src/debug/printing/printable.cpp @@ -32,7 +32,8 @@ namespace sta vsnprintf(str, n+1, fmt, args); STA_ASSERT(n > 0); - println(str); + // If you are peer-reviewing this, ask Dario if this is supposed to stay here. + print(str); } void Printable::print(char c)