Hi,
In my tapestry application, I'm trying to add method logging (provided by
hivemind.LoggingInterceptor)
-- hivemodule.xml --
...
<service-point id="daoService">
<invoke-factory>
<construct class="impl.DaoServiceImpl">
<set-service property="userDao" service-id="UserDao"/>
<set-service property="productDao" service-id="productDao"/>
</construct>
</invoke-factory>
<interceptor service-id="hivemind.LoggingInterceptor"/>
</service-point>
...
Then, I inject that service to my page, its works but I can't see any log
information when I invoke the method.
Please help me...
Rdgs,
Verdianto