summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cpp/src/Ice/Application.cpp24
-rw-r--r--cs/src/Ice/Application.cs26
-rw-r--r--java/src/Ice/Application.java16
3 files changed, 33 insertions, 33 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.";
}
}
diff --git a/cs/src/Ice/Application.cs b/cs/src/Ice/Application.cs
index 78d9c50c195..49b3d7f5697 100644
--- a/cs/src/Ice/Application.cs
+++ b/cs/src/Ice/Application.cs
@@ -225,8 +225,8 @@ namespace Ice
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -249,8 +249,8 @@ namespace Ice
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -273,8 +273,8 @@ namespace Ice
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -298,8 +298,8 @@ namespace Ice
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -323,8 +323,8 @@ namespace Ice
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -356,8 +356,8 @@ namespace Ice
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -791,7 +791,7 @@ namespace Ice
// The class Mono.Unix.Native.Stdlib requires libMonoPosixHelper.so. Mono raises
// DllNotFoundException if it cannot be found in the shared library search path.
//
- Util.getProcessLogger().error("Ice.Application: warning: unable to initialize signals");
+ Util.getProcessLogger().warning("unable to initialize signals");
}
catch(System.Exception)
{
diff --git a/java/src/Ice/Application.java b/java/src/Ice/Application.java
index 6a7f5931891..2a212d407ff 100644
--- a/java/src/Ice/Application.java
+++ b/java/src/Ice/Application.java
@@ -240,8 +240,8 @@ public abstract class Application
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -277,8 +277,8 @@ public abstract class Application
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -309,8 +309,8 @@ public abstract class Application
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}
@@ -327,8 +327,8 @@ public abstract class Application
}
else
{
- Util.getProcessLogger().error(_appName +
- ": warning: interrupt method called on Application configured to not handle interrupts.");
+ Util.getProcessLogger().warning(_appName +
+ ": interrupt method called on Application configured to not handle interrupts.");
}
}