summaryrefslogtreecommitdiff
path: root/src/verify.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-03-22 20:48:17 +0000
committerCarl Hetherington <cth@carlh.net>2018-03-22 20:48:17 +0000
commitdb7d0d690591ec0d3eff840f51c8557e261f5686 (patch)
treed5c87076f66aa2dafb4d29dbf3274aac53f733e0 /src/verify.cc
parent8c852cbececaa94e7efbb0e8508484e073b06c67 (diff)
Remove some debug code.
Diffstat (limited to 'src/verify.cc')
-rw-r--r--src/verify.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/verify.cc b/src/verify.cc
index 75cab01d..ab6ba115 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -91,16 +91,12 @@ dcp::verify (vector<boost::filesystem::path> directories, function<void (string,
stage ("Checking picture asset hash", reel->main_picture()->asset()->file());
if (verify_asset (reel->main_picture(), progress)) {
notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, "Picture asset hash is incorrect"));
- } else {
- cout << "pic ok.\n";
}
}
if (reel->main_sound()) {
stage ("Checking sound asset hash", reel->main_sound()->asset()->file());
if (verify_asset (reel->main_sound(), progress)) {
notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, "Sound asset hash is incorrect"));
- } else {
- cout << "sounds ok.\n";
}
}
}