diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2018-08-20 21:56:57 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2018-08-20 21:56:57 +0200 |
commit | 4b131434d53e52b7127557d09311b119611f7b9f (patch) | |
tree | 6705e0af2b61325b9c607afa63a95194358036eb | |
parent | 1c42efb1b116287949e59370198cad2df465835d (diff) |
Less debug logs
-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; } |