From: Carl Hetherington Date: Mon, 11 Apr 2016 21:54:56 +0000 (+0100) Subject: More debugging of batch converter startup. X-Git-Tag: v2.7.12~8 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=3d2fdefdb1bcf0a2baf2285246ed413654bf1f9d;p=dcpomatic.git More debugging of batch converter startup. --- diff --git a/src/lib/cross.cc b/src/lib/cross.cc index 7abe01cc9..4e801f44c 100644 --- a/src/lib/cross.cc +++ b/src/lib/cross.cc @@ -376,7 +376,7 @@ start_batch_converter (boost::filesystem::path dcpomatic) #if defined(DCPOMATIC_LINUX) || defined(DCPOMATIC_OSX) pid_t pid = fork (); if (pid == 0) { - std::cout << "start " << batch << "\n"; + std::cout << "start " << batch << " from " << dcpomatic << "\n"; int const r = system (batch.string().c_str()); exit (WEXITSTATUS (r)); }