ali4j
ali4j

Reputation: 522

Liferay Log Utilty

I'm searching for a solution, here is my problem, I want to develop a log utility system using Liferay extension environment(or maybe liferay portlet) as a new plugin. There are various portlets in our portal which each of them has a database search capability in its form, I would like to implement a feature to log user's action(specially search queries) during their session , How can I implement this feature as a standalone deployable plugin which does not impose a lot of changes in our portlets?

Upvotes: 0

Views: 87

Answers (1)

Daniele Baggio
Daniele Baggio

Reputation: 2257

Use Message Bus framework: in every portlet you have to insert custom code to send a message of what happens.

You have to build a new plugin with message bus listener that collects every message and log it.

Upvotes: 2

Related Questions