Remove verbose debug message
This commit is contained in:
parent
c7fff6b27a
commit
c970f92206
1 changed files with 1 additions and 2 deletions
|
|
@ -88,14 +88,13 @@ void Tuning::Impl::updateScale(const Tunings::Scale& scale, absl::optional<fs::p
|
||||||
|
|
||||||
bool Tuning::Impl::shouldReloadScala()
|
bool Tuning::Impl::shouldReloadScala()
|
||||||
{
|
{
|
||||||
DBG("Should reload scala called");
|
|
||||||
if (!scalaFile_)
|
if (!scalaFile_)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
std::error_code ec;
|
std::error_code ec;
|
||||||
const auto newTime = fs::last_write_time(*scalaFile_, ec);
|
const auto newTime = fs::last_write_time(*scalaFile_, ec);
|
||||||
if (newTime > modificationTime_) {
|
if (newTime > modificationTime_) {
|
||||||
DBG("File changed!");
|
DBG("Scala file changed!");
|
||||||
modificationTime_ = newTime;
|
modificationTime_ = newTime;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue