From 0c883b526caff5878582f7b6bb717559c6f1cfad Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sat, 21 Jul 2018 22:06:42 -0500 Subject: [PATCH] Use Slic3r::Log instead of printf --- xs/src/libslic3r/Layer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xs/src/libslic3r/Layer.cpp b/xs/src/libslic3r/Layer.cpp index fe9636d62..cbbc6b3ee 100644 --- a/xs/src/libslic3r/Layer.cpp +++ b/xs/src/libslic3r/Layer.cpp @@ -248,7 +248,8 @@ void Layer::make_fills() { #ifdef SLIC3R_DEBUG - printf("Making fills for layer %zu\n", this->id()); + Slic3r::Log::debug("Layer") << "Making fills for layer " + << this->id() << "\n"; #endif FOREACH_LAYERREGION(this, it_layerm) {