Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
1.2k views
in Plugins by

I was getting lot of error messages with event logger plugin so I deleted it and now everything works fine. I am just wondering what the plugin was for as everything seems to work ok now.

Q2A version: 1.6.3

1 Answer

+9 votes
by
selected by
 
Best answer
Q2A fires events. Events are usually (but not necessarily) actions performed by users. Sample events are voting on questions, selecting answers, user registrations, etc. Those events are volatile, I mean, they are fired and then get lost, although their effect remains, of course.

The event logger is a simple plugin that logs all those events so that they don't get lost. So if you take a look at the logged events in the log you will see some information (called parameters) about the events. Each parameter depend on each type of event (votes, registration, etc).

So there is nothing special about this plugin. However, many other plugins use its output to reconstruct the history of the site. For instance, you could see what user voted which question and when. This, of course, is not reliable as the event logger can be disabled and then reenabled so all events fired in the meantime would be lost. So the plugin in its own is not special but it might be a dependency for other plugins.

One important drawback to consider about the event logger is that logging every event in the site generates an additional processing that, in most cases, is not required.
by
nicely explained . Thumbs up
by
For example I'm using the events logged for the on-site-notifications and the liveticker plugin: http://www.q2apro.com/plugins/on-site-notifications + http://www.q2apro.com/plugins/liveticker

Liveticker demo: http://www.gute-mathe-fragen.de/liveticker
...