summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-08-20 21:56:57 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-08-20 21:56:57 +0200
commit4b131434d53e52b7127557d09311b119611f7b9f (patch)
tree6705e0af2b61325b9c607afa63a95194358036eb
parent1c42efb1b116287949e59370198cad2df465835d (diff)
Less debug logs
-rw-r--r--main.cpp2
1 files changed, 0 insertions, 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<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;
}