Skip to content

Commit

Permalink
remove redundant logging calls
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx committed Sep 28, 2024
1 parent 8d78e9e commit 58f4275
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ void Utils::populateVector(bool customSongs) {

for (std::string string : blacklist) {
if (string.starts_with(filePathString)) {
geode::log::info("\n{}\n{}", string, filePathString);
isInTextBlacklist = true;
break;
}
Expand Down Expand Up @@ -276,8 +275,6 @@ void Utils::populateVector(bool customSongs) {

for (std::string string : blacklist) {
if (string.starts_with(songPath)) {
geode::log::info("string.starts_with(songPath): {}", string.starts_with(songPath));
geode::log::info("\n{}\n{}", string, songPath);
isInTextBlacklist = true;
break;
}
Expand Down

0 comments on commit 58f4275

Please sign in to comment.