get basic console info from web view

This commit is contained in:
Ben Fry
2021-07-08 18:47:00 -04:00
parent cf91432ec4
commit 5675c23899
@@ -10,6 +10,8 @@ import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionListener;
import com.sun.javafx.webkit.WebConsoleListener;
import static javafx.concurrent.Worker.State.FAILED;
@@ -90,6 +92,11 @@ public class WebFrame extends JFrame {
}
});
// FireBug Lite is another option: https://stackoverflow.com/a/9405733
WebConsoleListener.setDefaultListener((webView, message, lineNumber, sourceId) -> {
System.out.println("console: " + message + " [" + sourceId + " - " + lineNumber + "]");
});
jfxPanel.setScene(new Scene(view));
});
}