Skip to content

Commit

Permalink
Printing connection attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Sep 5, 2024
1 parent 9b83a45 commit 61f23b8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ void afterRender() {
System.out.println("Is Secure: " + request.isSecure());
System.out.println("Path: " + request.getPath());
System.out.println("Remote Host: " + request.getRemoteHost());
for (var name : request.getAttributeNames())
System.out.println("Attribute " + name + ": " + request.getAttribute(name));
javaScriptSupport.require("gepi/base").invoke("setuptooltips");
javaScriptSupport.require("gepi/charts/data").invoke("setDataUrl").with(resources.createEventLink("loadDataToClient").toAbsoluteURI(productionMode));
javaScriptSupport.require("gepi/pages/index").invoke("setupDownloadUrlCopyButton");
Expand Down

0 comments on commit 61f23b8

Please sign in to comment.