From 4b131434d53e52b7127557d09311b119611f7b9f Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Mon, 20 Aug 2018 21:56:57 +0200 Subject: Less debug logs --- main.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.cpp b/main.cpp index 6e363e7..89bae51 100644 --- a/main.cpp +++ b/main.cpp @@ -180,7 +180,6 @@ static optional 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 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; } -- cgit v1.2.3-54-g00ecf