Skip to content

Commit

Permalink
Clarify debug loglines
Browse files Browse the repository at this point in the history
I just don't like sentences without capitals or too weird grammar
  • Loading branch information
nallath committed Aug 29, 2022
1 parent 7a6e0a8 commit bc691bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slicer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -796,10 +796,10 @@ Slicer::Slicer(Mesh* i_mesh, const coord_t thickness, const size_t slice_layer_c

buildSegments(*mesh, zbbox, slicing_tolerance, layers);

spdlog::info("slice of mesh took {:3} seconds", slice_timer.restart());
spdlog::info("Slice of mesh took {:3} seconds", slice_timer.restart());

makePolygons(*i_mesh, slicing_tolerance, layers);
spdlog::info("slice make polygons took {:3} seconds", slice_timer.restart());
spdlog::info("Make polygons took {:3} seconds", slice_timer.restart());
}

void Slicer::buildSegments(const Mesh& mesh, const std::vector<std::pair<int32_t, int32_t>>& zbbox, const SlicingTolerance& slicing_tolerance, std::vector<SlicerLayer>& layers)
Expand Down

0 comments on commit bc691bc

Please sign in to comment.