Skip to content

Commit

Permalink
comment out empty notedata cache messages
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace authored and jameskr97 committed Aug 22, 2020
1 parent f01c051 commit 92fa777
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Etterna/Models/NoteWriters/NotesWriterETT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ NotesWriterETT::Write(std::string& sPath,
auto sTag = GetETTNoteData(out, *pSteps);
f.PutLine(sTag);
} else {
Locator::getLogger()->info("Not caching empty difficulty in file {}", sPath.c_str());
//Locator::getLogger()->info("Not caching empty difficulty in file {}", sPath.c_str());
}
}
if (f.Flush() == -1)
Expand Down
2 changes: 1 addition & 1 deletion src/Etterna/Models/NoteWriters/NotesWriterSSC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ NotesWriterSSC::Write(std::string& sPath,
std::string sTag = GetSSCNoteData(out, *pSteps, bSavingCache);
f.PutLine(sTag);
} else {
Locator::getLogger()->info("Not caching empty difficulty in file {}", sPath.c_str());
//Locator::getLogger()->info("Not caching empty difficulty in file {}", sPath.c_str());
}
}
if (f.Flush() == -1)
Expand Down

0 comments on commit 92fa777

Please sign in to comment.