diff options
-rw-r--r-- | main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -180,7 +180,6 @@ static optional<MatchResult> readMatchCache(const Player &p1, const Player &p2, if (!f) return nullopt; if (p1.lastModified > cacheStamp || p2.lastModified > cacheStamp) { - cerr << "(cache ignored because players newer) " << cacheStamp << " " << p1.lastModified << " " << p2.lastModified << endl; return nullopt; } @@ -188,7 +187,6 @@ static optional<MatchResult> readMatchCache(const Player &p1, const Player &p2, string word; f >> word >> mres.sc1 >> mres.sc2 >> mres.ms1 >> mres.ms2; if (!f) { - cerr << "(cache ignored because error reading file)" << endl; return nullopt; } |