summaryrefslogtreecommitdiff
path: root/netsvcs/servers/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'netsvcs/servers/main.cpp')
-rw-r--r--netsvcs/servers/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/netsvcs/servers/main.cpp b/netsvcs/servers/main.cpp
index 6c7503c88ba..e39b0e23ebe 100644
--- a/netsvcs/servers/main.cpp
+++ b/netsvcs/servers/main.cpp
@@ -40,7 +40,8 @@ main (int argc, char *argv[])
else // Use static linking.
{
if (ACE::debug () == 0)
- ACE_Log_Msg::disable_debug_messages ();
+ ACE_LOG_MSG->priority_mask (~LM_DEBUG,
+ ACE_Log_Msg::PROCESS);
// Calling ACE_SVC_INVOKE to create a new Service_Object.
// Stash the newly created Service_Object into an
@@ -141,7 +142,8 @@ main (int argc, char *argv[])
else // Use dynamic linking.
{
if (ACE::debug () == 0)
- ACE_Log_Msg::disable_debug_messages ();
+ ACE_LOG_MSG->priority_mask (~LM_DEBUG,
+ ACE_Log_Msg::PROCESS);
// Run forever, performing the configured services until we are
// shut down by a SIGINT/SIGQUIT signal.