Added class name on runnable execution exception message.

This commit is contained in:
MobiusDev 2017-09-06 18:21:03 +00:00
parent 547bfa68ea
commit 41466b4787
5 changed files with 5 additions and 5 deletions

View File

@ -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);
}
}
}

View File

@ -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);
}
}
}

View File

@ -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);
}
}
}

View File

@ -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);
}
}
}

View File

@ -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);
}
}
}