Merge "sw:vec: Remove unwanted escape characters in test_runner.py"
diff --git a/springbok/springbok.cpp b/springbok/springbok.cpp
index 95c3941..514eda0 100644
--- a/springbok/springbok.cpp
+++ b/springbok/springbok.cpp
@@ -109,7 +109,8 @@
 extern "C" int float_to_str(const int len, char *buffer, const float value) {
   if (buffer == NULL && len != 0) {
     // Bad inputs
-    springbok_simprint(SPRINGBOK_SIMPRINT_ERROR, "float_to_str handed null buffer with non-zero length! len:", len);
+    LOG_ERROR("float_to_str handed null buffer with non-zero length! len:%d",
+              len);
     return 0;
   }