summaryrefslogtreecommitdiffstats
path: root/src/format.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-07-07 15:20:24 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-07-07 15:20:24 -0400
commit5f1f24c1ea3c9fb0433f1ae85f9f7fcdd71997a1 (patch)
tree4485bdf64fd261c109d34e1a01b249cd989c45f2 /src/format.c
parent4040af47931c604c020cab2cb4f50b9b0a6f1bfe (diff)
- try not to log binary data
Diffstat (limited to 'src/format.c')
-rw-r--r--src/format.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/format.c b/src/format.c
index c5fa1ab..e26a865 100644
--- a/src/format.c
+++ b/src/format.c
@@ -698,10 +698,6 @@ format_referred_entry_cb(Slapi_Entry *e, void *callback_data)
cbdata->state->plugin_desc->spd_id,
"referred: got %d-byte value for \"%s\"\n",
val->bv_len, actual_attr);
- slapi_log_error(SLAPI_LOG_PLUGIN,
- cbdata->state->plugin_desc->spd_id,
- "referred: got \"%.*s\" for \"%s\"\n",
- val->bv_len, val->bv_val, actual_attr);
/* Add it to the list of values we've retrieved. */
format_add_bv_list(&cbdata->choices, val);
}
@@ -906,10 +902,6 @@ format_merge(struct plugin_state *state, Slapi_PBlock *pb, Slapi_Entry *e,
state->plugin_desc->spd_id,
"merge: got %d-byte value for ->%s<\n",
lengths[j], argv[i]);
- slapi_log_error(SLAPI_LOG_PLUGIN,
- state->plugin_desc->spd_id,
- "merge: got %.*s for ->%s<\n",
- lengths[j], values[j], argv[i]);
/* If this isn't the first result, fill in the
* separator. Then fill in the value. */
if (count > 0) {
@@ -2130,12 +2122,6 @@ format_get_data_set(struct plugin_state *state, Slapi_Entry *e,
"choice: %d at %d\n",
this_choice->values[i]->bv_len,
this_choice->offset - template);
- slapi_log_error(SLAPI_LOG_PLUGIN,
- state->plugin_desc->spd_id,
- "choice: %.*s at %d\n",
- this_choice->values[i]->bv_len,
- this_choice->values[i]->bv_val,
- this_choice->offset - template);
}
combinations *= this_choice->n_values;
}