views:

41

answers:

1

Hi guys,

I am having a big problem trying to find a logging option for our SOLR integration.

Recently I have started using SOLRNET to add documents from the database in batches as previously we were just renewing the entire index every morning. So far this solution is working very well and is exactly what we wanted.

However, I am in need of a solution that will log every document being added and can also differentiate between an "add" or an "update". It seems posting to solr handles it in a way where "if the document exists, overwrite it; If not then add" but in the catalina logfile this operations looks identical no matter what the scenario.

My question is; Are there any logging solutions out there that can accomplish this, the current default logging options in solr that log to catalina are insufficient.

Many thanks for any help.

A: 

As far as I can tell there's no way to do that at the moment. I tried cranking up the log level (http://localhost:8983/solr/admin/logging) to no avail. I also checked the source code, I don't see any logging or hooks there.

Mauricio Scheffer