X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fplugins%2Ftext%2Fdetails%2Fdetails.c;h=47a29326313fe5b1aba827dbc07f654bb873b3a6;hb=335a2da576e59d32c17de2ece1e7e339c50e9c25;hp=cd48a87c7b3e003e7a0a0d6acf221a4fb070a654;hpb=f393c19b7abdcc7763d1e6bc045022edeebd283e;p=babeltrace.git diff --git a/src/plugins/text/details/details.c b/src/plugins/text/details/details.c index cd48a87c..47a29326 100644 --- a/src/plugins/text/details/details.c +++ b/src/plugins/text/details/details.c @@ -53,9 +53,6 @@ const char * const with_metadata_param_name = "with-metadata"; static const char * const with_time_param_name = "with-time"; -static -const char * const with_trace_class_name_param_name = "with-trace-class-name"; - static const char * const with_trace_name_param_name = "with-trace-name"; @@ -322,14 +319,6 @@ int configure_details_comp(struct details_comp *details_comp, goto error; } - /* With trace class name? */ - ret = configure_bool_opt(details_comp, params, - with_trace_class_name_param_name, - true, &details_comp->cfg.with_trace_class_name); - if (ret) { - goto error; - } - /* With trace name? */ ret = configure_bool_opt(details_comp, params, with_trace_name_param_name, @@ -381,8 +370,6 @@ void log_configuration(bt_self_component_sink *comp, BT_COMP_LOGI(" Compact: %d", details_comp->cfg.compact); BT_COMP_LOGI(" With metadata: %d", details_comp->cfg.with_meta); BT_COMP_LOGI(" With time: %d", details_comp->cfg.with_time); - BT_COMP_LOGI(" With trace class name: %d", - details_comp->cfg.with_trace_class_name); BT_COMP_LOGI(" With trace name: %d", details_comp->cfg.with_trace_name); BT_COMP_LOGI(" With stream class name: %d", details_comp->cfg.with_stream_class_name);