Remove some debug code.
authorCarl Hetherington <cth@carlh.net>
Thu, 22 Mar 2018 20:48:17 +0000 (20:48 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 22 Mar 2018 20:48:17 +0000 (20:48 +0000)
src/verify.cc

index 75cab01df092a231157098d2506bad68a57bdee4..ab6ba115d1f1b36e7247e27c81400ef3988039c6 100644 (file)
@@ -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";
                                        }
                                }
                        }