From: ancient-skyscraper Date: Fri, 10 Mar 2023 21:01:14 +0000 (+0100) Subject: Output hints on stderr. X-Git-Tag: v2.16.48~13 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=3c0eab416f67c293fb61069ce285e185d9c349b3 Output hints on stderr. --- diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index 40461b794..3e1e13c51 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -484,13 +484,13 @@ main (int argc, char* argv[]) std::cout << UP_ONE_LINE_AND_ERASE; if (!hints.empty()) { - std::cout << "Hints:\n\n"; + std::cerr << "Hints:\n\n"; for (auto hint: hints) { - std::cout << word_wrap("* " + hint, 70) << "\n"; + std::cerr << word_wrap("* " + hint, 70) << "\n"; } - std::cout << "*** Encoding aborted because hints were found ***\n\n"; - std::cout << "Modify your settings and run the command again, or run without\n"; - std::cout << "the `--hints' option to ignore these hints and encode anyway.\n"; + std::cerr << "*** Encoding aborted because hints were found ***\n\n"; + std::cerr << "Modify your settings and run the command again, or run without\n"; + std::cerr << "the `--hints' option to ignore these hints and encode anyway.\n"; exit(EXIT_FAILURE); } }