sink.text.details: add `with-data` initialization parameter
[babeltrace.git] / src / plugins / text / details / details.c
index 582230f0fb3dde3a4083880ed2c9952d70554747..9c45e39e4bacbaaf95ed0fc87b84ee3294b29267 100644 (file)
@@ -50,6 +50,9 @@ const char * const color_param_name = "color";
 static
 const char * const with_metadata_param_name = "with-metadata";
 
+static
+const char * const with_data_param_name = "with-data";
+
 static
 const char * const with_time_param_name = "with-time";
 
@@ -305,6 +308,13 @@ int configure_details_comp(struct details_comp *details_comp,
                goto error;
        }
 
+       /* With data objects? */
+       ret = configure_bool_opt(details_comp, params, with_data_param_name,
+               true, &details_comp->cfg.with_data);
+       if (ret) {
+               goto error;
+       }
+
        /* Compact? */
        ret = configure_bool_opt(details_comp, params, compact_param_name,
                false, &details_comp->cfg.compact);
This page took 0.0245 seconds and 4 git commands to generate.