Use Slic3r::Log instead of printf

This commit is contained in:
Joseph Lenox 2018-07-21 22:06:42 -05:00
parent b2b6a6a809
commit 0c883b526c

View File

@ -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) {