Skip to content

Commit

Permalink
Remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Nov 6, 2024
1 parent 9ed57f6 commit a17ce83
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Source/Components/DraggableNumber.h
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,6 @@ class DraggableNumber : public Label
text = text.trimCharactersAtEnd("0");
}
else {
std::cout << "old dec" << std::floor(std::log10(std::max(1, text.getTrailingIntValue())) + 1) << std::endl;
std::cout << "new dec" << precision << std::endl;
text = text.dropLastCharacters(std::floor(std::log10(std::max(1, text.getTrailingIntValue())) + 1) - precision);
}
}
Expand Down

0 comments on commit a17ce83

Please sign in to comment.