Added class name on runnable execution exception message.
This commit is contained in:
@@ -292,7 +292,7 @@ public final class ThreadPoolManager
|
|||||||
}
|
}
|
||||||
catch (RuntimeException e)
|
catch (RuntimeException e)
|
||||||
{
|
{
|
||||||
LOG.warning("Exception in a Runnable execution:" + e);
|
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -292,7 +292,7 @@ public final class ThreadPoolManager
|
|||||||
}
|
}
|
||||||
catch (RuntimeException e)
|
catch (RuntimeException e)
|
||||||
{
|
{
|
||||||
LOG.warning("Exception in a Runnable execution:" + e);
|
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -292,7 +292,7 @@ public final class ThreadPoolManager
|
|||||||
}
|
}
|
||||||
catch (RuntimeException e)
|
catch (RuntimeException e)
|
||||||
{
|
{
|
||||||
LOG.warning("Exception in a Runnable execution:" + e);
|
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -292,7 +292,7 @@ public final class ThreadPoolManager
|
|||||||
}
|
}
|
||||||
catch (RuntimeException e)
|
catch (RuntimeException e)
|
||||||
{
|
{
|
||||||
LOG.warning("Exception in a Runnable execution:" + e);
|
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -292,7 +292,7 @@ public final class ThreadPoolManager
|
|||||||
}
|
}
|
||||||
catch (RuntimeException e)
|
catch (RuntimeException e)
|
||||||
{
|
{
|
||||||
LOG.warning("Exception in a Runnable execution:" + e);
|
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user