Skip to content

Commit

Permalink
Remove verbose debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfd committed Jun 15, 2020
1 parent c7fff6b commit c970f92
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sfizz/Tuning.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,13 @@ void Tuning::Impl::updateScale(const Tunings::Scale& scale, absl::optional<fs::p

bool Tuning::Impl::shouldReloadScala()
{
DBG("Should reload scala called");
if (!scalaFile_)
return false;

std::error_code ec;
const auto newTime = fs::last_write_time(*scalaFile_, ec);
if (newTime > modificationTime_) {
DBG("File changed!");
DBG("Scala file changed!");
modificationTime_ = newTime;
return true;
}
Expand Down

0 comments on commit c970f92

Please sign in to comment.