Skip to content
Snippets Groups Projects
Commit cce85165 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

encourage use of issues list

parent 2ac80852
No related branches found
No related tags found
No related merge requests found
......@@ -38,8 +38,12 @@ class ContentLoader implements Runnable
{
/** Message for an unexpected exception message */
private static final String UNEXPECTED_EXCEPTION_MSG =
"ContentLoader: unexpected Xj3D exception during model loading";
"[ContentLoader] unexpected Xj3D exception during model loading";
private static final String Xj3D_ISSUE_LIST =
"New Xj3D issue needed to improve the open source, please see\n" +
" https://gitlab.nps.edu/Savage/xj3d/issues";
/** The threading running this loader */
private Thread thread;
......@@ -123,8 +127,9 @@ class ContentLoader implements Runnable
catch (Exception e)
{
// Any other exception
System.out.println ("ContentLoader exception:"); // debug
errorReporter.errorReport(UNEXPECTED_EXCEPTION_MSG, e);
// System.out.println ("ContentLoader exception:"); // debug
errorReporter.errorReport (UNEXPECTED_EXCEPTION_MSG, e);
errorReporter.messageReport(Xj3D_ISSUE_LIST);
// e.printStackTrace(System.out); // debug
inProgressLoadRequestMap.remove(currentLoadRequest.url);
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment