From 64c268ebead2454ec067bc92844c0c1df9f1e503 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Tue, 26 Jul 2011 11:58:58 -0400 Subject: - get more verbose with logging --- src/back-nis.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/back-nis.c') diff --git a/src/back-nis.c b/src/back-nis.c index 906f25a..0588795 100644 --- a/src/back-nis.c +++ b/src/back-nis.c @@ -334,6 +334,13 @@ backend_set_entry(Slapi_Entry *e, struct backend_set_data *data) plugin_id = data->common.state->plugin_desc->spd_id; /* Pull out the NDN of this entry. */ ndn = slapi_entry_get_ndn(e); + if (ndn != NULL) { + slapi_log_error(SLAPI_LOG_PLUGIN, plugin_id, + "examining input entry \"%s\"\n", ndn); + } else { + slapi_log_error(SLAPI_LOG_PLUGIN, plugin_id, + "examining unnamed input entry(?)\n"); + } /* Pull out the keys and value for the entry. */ all_keys = backend_gather_data(data->common.state, e, data->common.group, -- cgit