Added class name on runnable execution exception message.
This commit is contained in:
parent
547bfa68ea
commit
41466b4787
@ -292,7 +292,7 @@ public final class ThreadPoolManager
|
||||
}
|
||||
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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
LOG.warning("Exception in a Runnable execution:" + e);
|
||||
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user