summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2009-07-29 23:34:56 +0200
committerJose <jose@zeroc.com>2009-07-29 23:34:56 +0200
commit10ff3d789574879cdaf472b4a4122943e4b7f25a (patch)
tree31b9f001a12659b8faf0f7a9ee66cfea3ac41774 /cpp
parentChanges for bug 3962 and 4714 (diff)
downloadice-10ff3d789574879cdaf472b4a4122943e4b7f25a.tar.bz2
ice-10ff3d789574879cdaf472b4a4122943e4b7f25a.tar.xz
ice-10ff3d789574879cdaf472b4a4122943e4b7f25a.zip
4179 - bogus logging in Ice.Application
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/Ice/Application.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/cpp/src/Ice/Application.cpp b/cpp/src/Ice/Application.cpp
index 7b8481f27ee..cb411293e5a 100644
--- a/cpp/src/Ice/Application.cpp
+++ b/cpp/src/Ice/Application.cpp
@@ -481,8 +481,8 @@ Ice::Application::destroyOnInterrupt()
}
else
{
- Error out(getProcessLogger());
- out << _appName << ": warning: interrupt method called on Application configured to not handle interrupts.";
+ Warning out(getProcessLogger());
+ out << _appName << ": interrupt method called on Application configured to not handle interrupts.";
}
}
@@ -504,8 +504,8 @@ Ice::Application::shutdownOnInterrupt()
}
else
{
- Error out(getProcessLogger());
- out << _appName << ": warning: interrupt method called on Application configured to not handle interrupts.";
+ Warning out(getProcessLogger());
+ out << _appName << ": interrupt method called on Application configured to not handle interrupts.";
}
}
@@ -527,8 +527,8 @@ Ice::Application::ignoreInterrupt()
}
else
{
- Error out(getProcessLogger());
- out << _appName << ": warning: interrupt method called on Application configured to not handle interrupts.";
+ Warning out(getProcessLogger());
+ out << _appName << ": interrupt method called on Application configured to not handle interrupts.";
}
}
@@ -550,8 +550,8 @@ Ice::Application::callbackOnInterrupt()
}
else
{
- Error out(getProcessLogger());
- out << _appName << ": warning: interrupt method called on Application configured to not handle interrupts.";
+ Warning out(getProcessLogger());
+ out << _appName << ": interrupt method called on Application configured to not handle interrupts.";
}
}
@@ -574,8 +574,8 @@ Ice::Application::holdInterrupt()
}
else
{
- Error out(getProcessLogger());
- out << _appName << ": warning: interrupt method called on Application configured to not handle interrupts.";
+ Warning out(getProcessLogger());
+ out << _appName << ": interrupt method called on Application configured to not handle interrupts.";
}
}
@@ -605,8 +605,8 @@ Ice::Application::releaseInterrupt()
}
else
{
- Error out(getProcessLogger());
- out << _appName << ": warning: interrupt method called on Application configured to not handle interrupts.";
+ Warning out(getProcessLogger());
+ out << _appName << ": interrupt method called on Application configured to not handle interrupts.";
}
}