AppletLoader: minor change to provided more information for some error messages.

This commit is contained in:
kappa1 2011-10-20 10:36:42 +00:00
parent 297b11442a
commit faefad816c
1 changed files with 2 additions and 2 deletions

View File

@ -1843,7 +1843,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
}
if (certs1.length != certs2.length) {
System.out.println("Certificate chain differs in length!");
System.out.println("Certificate chain differs in length [" + certs1.length + " vs " + certs2.length + "]!");
return false;
}
@ -1989,7 +1989,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
}
// show error as image could not be loaded
fatalErrorOccured("Unable to load logo and progressbar images", null);
fatalErrorOccured("Unable to load the logo/progressbar image: " + s, null);
return null;
}