X-Git-Url: http://nitlanguage.org diff --git a/lib/popcorn/tests/test_example_advanced_logger.nit b/lib/popcorn/tests/test_example_advanced_logger.nit index 41193d2..29b3fc2 100644 --- a/lib/popcorn/tests/test_example_advanced_logger.nit +++ b/lib/popcorn/tests/test_example_advanced_logger.nit @@ -28,9 +28,9 @@ class TestClient end var app = new App -app.use("/*", new RequestTimeHandler) +app.use_before("/*", new RequestTimeHandler) app.use("/", new HelloHandler) -app.use("/*", new LogHandler) +app.use_after("/*", new LogHandler) var host = test_host var port = test_port