This is an automated email from the ASF dual-hosted git repository. thiagohp pushed a commit to branch feature/coffeescript-to-typescript in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit d81eb09cf3a69bfd731956a437c64cf4d77d48e1 Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br> AuthorDate: Sun Jun 8 16:20:40 2025 -0300 Revert "More test logging (attempt 3)" This reverts commit c84c17cbbab208fe56190ca7ae78c4710800c293. --- .../integration/TapestryBeanValidationIntegrationTests.java | 8 ++++---- .../src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java | 7 ------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java index 3b53a433a..195061e09 100644 --- a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java +++ b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java @@ -110,11 +110,11 @@ public class TapestryBeanValidationIntegrationTests extends SeleniumTestCase @Test public void beaneditform_validation() throws Exception { - LoggerFactory.getLogger(SeleniumTestCase.class) - .warn("LOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOG SeleniumTestCase"); + System.out.println("TTTTTTTTTTTTTTTTTTTTTTTt"); + System.err.println("RRRRRRRRRRRRRRR"); - LoggerFactory.getLogger(this.getClass()) - .warn("LOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOG " + this.getClass().getSimpleName()); + LoggerFactory.getLogger(SeleniumTestCase.class) + .warn("LOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOG"); openLinks("BeanEditForm Validation Demo"); openLinks("BeanEditForm Validation Demo");// TODO: remove this diff --git a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java index 350978c9d..cdc4763ac 100644 --- a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java +++ b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java @@ -1448,13 +1448,6 @@ public abstract class SeleniumTestCase extends Assert implements Selenium e.printStackTrace(); System.out.println("Continuing execution after exception above."); } - catch (RuntimeException e) { - LOGGER.error("selenium.browserbot: " + getEval("selenium.browserbot")); - LOGGER.error("selenium.browserbot.getCurrentWindow(): " + getEval("selenium.browserbot.getCurrentWindow()")); - LOGGER.error("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").attributes : " + getEval("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").attributes")); - LOGGER.error("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").dataset : " + getEval("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").dataset")); - throw e; - } }