diff --git a/exec/sync.c b/exec/sync.c index ce115a35..c275d3f0 100644 --- a/exec/sync.c +++ b/exec/sync.c @@ -134,7 +134,6 @@ static void sync_confchg_fn ( static void sync_primary_callback_fn ( const unsigned int *view_list, size_t view_list_entries, - int primary_designated, const struct memb_ring_id *ring_id); @@ -321,17 +320,10 @@ int sync_register ( static void sync_primary_callback_fn ( const unsigned int *view_list, size_t view_list_entries, - int primary_designated, const struct memb_ring_id *ring_id) { int i; - if (primary_designated) { - log_printf (LOGSYS_LEVEL_DEBUG, "This node is within the primary component and will provide service.\n"); - } else { - log_printf (LOGSYS_LEVEL_DEBUG, "This node is within the non-primary component and will NOT provide any services.\n"); - return; - } /* * Execute configuration change for synchronization service @@ -491,6 +483,5 @@ static void sync_confchg_fn ( sync_primary_callback_fn ( member_list, member_list_entries, - 1, ring_id); }