// registering shutdown hook
log.info("Registering Shutdown Hook");
Thread t = new Thread() {
@Override
public void run() {
app = new Application("YaCy GUI", operation, menues, new InfoPage("localhost", 8090));
app.setLocationRelativeTo(null);
app.setVisible(true);
}
};
Switchboard.addShutdownHook(t, net.yacy.yacy.shutdownSemaphore);