diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-23 21:29:12 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-23 21:29:12 +0000 |
commit | 6b53e3571d22ba7ce94b9930fe42dadc3ba851ee (patch) | |
tree | 2b2536d7c36b4bb4d63a582ec5b9b15101f0f96f /ace/Process.cpp | |
parent | b4f861fc3ee651fe493ea2709d1d59df623a2d08 (diff) | |
download | ATCD-6b53e3571d22ba7ce94b9930fe42dadc3ba851ee.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Process.cpp')
-rw-r--r-- | ace/Process.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Process.cpp b/ace/Process.cpp index 1bce4218b32..434c337251b 100644 --- a/ace/Process.cpp +++ b/ace/Process.cpp @@ -125,9 +125,9 @@ ACE_Process::spawn (ACE_Process_Options &options) { // If the execv fails, this child needs to exit. - // Print the message if debug_ is enabled in the service - // configurator. - if (ACE_Service_Config::debug_) + // Print the message if debug_ is greater than 1 in the + // service configurator. + if (ACE_Service_Config::debug_ > 1) ACE_DEBUG ((LM_MAX, "(%P): ACE_Process::spawn (); exec failed: exiting!!!!\n")); |