diff --git a/src/java/org/xj3d/core/loading/ContentLoader.java b/src/java/org/xj3d/core/loading/ContentLoader.java
index 0575aa82fff60ed9a285837c4650e7aa93886207..0f1c99341a7d0e03f8ddc9f9a434d4acdb271384 100644
--- a/src/java/org/xj3d/core/loading/ContentLoader.java
+++ b/src/java/org/xj3d/core/loading/ContentLoader.java
@@ -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;