File newfile = new File("logging/HelloWorld.class");
byte[] bytes = new byte[(int)newfile.length()];
new FileInputStream(newfile).read(bytes);
System.out.println("** reload a logging version");
hs.reload("HelloWorld", bytes);
new HelloWorld().print();
newfile = new File("HelloWorld.class");
bytes = new byte[(int)newfile.length()];
new FileInputStream(newfile).read(bytes);