Print also the type of the exception, not only its message emul
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 10 Feb 2013 19:33:35 +0100
branchemul
changeset 707a9187d4aaa6b
parent 706 a48961ff3e6b
child 708 59d5596a9c6c
Print also the type of the exception, not only its message
launcher/src/main/java/org/apidesign/bck2brwsr/launcher/impl/Console.java
     1.1 --- a/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/impl/Console.java	Sun Feb 10 12:14:40 2013 +0100
     1.2 +++ b/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/impl/Console.java	Sun Feb 10 19:33:35 2013 +0100
     1.3 @@ -125,7 +125,7 @@
     1.4                  loadText(u, this, arr);
     1.5                  
     1.6              } catch (Exception ex) {
     1.7 -                log(ex.getMessage());
     1.8 +                log(ex.getClass().getName() + ":" + ex.getMessage());
     1.9              }
    1.10          }
    1.11      }