More detailed message for threadpool execution exception.

This commit is contained in:
MobiusDev 2017-09-06 19:39:35 +00:00
parent ddb4aca55f
commit b536f7186a
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: " + _runnable.getClass().getSimpleName() + " " + e);
LOG.warning("Exception in " + _runnable.getClass().getName() + " execution: " + e.getMessage());
}
}
}

View File

@ -292,7 +292,7 @@ public final class ThreadPoolManager
}
catch (RuntimeException e)
{
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
LOG.warning("Exception in " + _runnable.getClass().getName() + " execution: " + e.getMessage());
}
}
}

View File

@ -292,7 +292,7 @@ public final class ThreadPoolManager
}
catch (RuntimeException e)
{
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
LOG.warning("Exception in " + _runnable.getClass().getName() + " execution: " + e.getMessage());
}
}
}

View File

@ -292,7 +292,7 @@ public final class ThreadPoolManager
}
catch (RuntimeException e)
{
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
LOG.warning("Exception in " + _runnable.getClass().getName() + " execution: " + e.getMessage());
}
}
}

View File

@ -292,7 +292,7 @@ public final class ThreadPoolManager
}
catch (RuntimeException e)
{
LOG.warning("Exception in a Runnable execution: " + _runnable.getClass().getSimpleName() + " " + e);
LOG.warning("Exception in " + _runnable.getClass().getName() + " execution: " + e.getMessage());
}
}
}