summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2021-01-14 08:05:59 -0300
committerThibault Saunier <tsaunier@igalia.com>2021-02-09 18:11:07 -0300
commit7282e1e56c9e0e9d55f48693871b43e66e811ada (patch)
tree381a6814e488b78b54fde9e06c9075767f1663fd
parent6c5daf8c810f177282a7af0e5c9ef00133c31deb (diff)
ges: Minor debug logging level and typo fixes
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/227>
-rw-r--r--ges/ges-asset.c2
-rw-r--r--ges/ges-base-xml-formatter.c2
-rw-r--r--ges/ges-validate.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/ges/ges-asset.c b/ges/ges-asset.c
index c2f334dd..6641ba29 100644
--- a/ges/ges-asset.c
+++ b/ges/ges-asset.c
@@ -444,7 +444,7 @@ ges_asset_finalize (GObject * object)
{
GESAssetPrivate *priv = GES_ASSET (object)->priv;
- GST_DEBUG_OBJECT (object, "finalizing");
+ GST_LOG_OBJECT (object, "finalizing");
if (priv->id)
g_free (priv->id);
diff --git a/ges/ges-base-xml-formatter.c b/ges/ges-base-xml-formatter.c
index 9b763847..8cfa1629 100644
--- a/ges/ges-base-xml-formatter.c
+++ b/ges/ges-base-xml-formatter.c
@@ -244,7 +244,7 @@ _load_and_parse (GESBaseXmlFormatter * self, const gchar * uri, GError ** error,
failed:
g_object_unref (file);
- GST_WARNING ("failed to load contents from \"%s\"", uri);
+ GST_INFO_OBJECT (self, "failed to load contents from \"%s\"", uri);
g_propagate_error (error, err);
return NULL;
}
diff --git a/ges/ges-validate.c b/ges/ges-validate.c
index 07670ef9..ace70e84 100644
--- a/ges/ges-validate.c
+++ b/ges/ges-validate.c
@@ -1821,7 +1821,7 @@ ges_validate_register_action_types (void)
.mandatory = FALSE,
},
{NULL}
- }, "Remove a child from @container-name.", GST_VALIDATE_ACTION_TYPE_NONE);
+ }, "Set a keyframe on @element-name:property-name.", GST_VALIDATE_ACTION_TYPE_NONE);
gst_validate_register_action_type ("copy-element", "ges", _copy_element,
(GstValidateActionParameter []) {
@@ -1886,7 +1886,7 @@ ges_validate_register_action_types (void)
.mandatory = FALSE,
},
{NULL}
- }, "Remove a child from @container-name.", GST_VALIDATE_ACTION_TYPE_NONE);
+ }, "Remove a keyframe on @element-name:property-name.", GST_VALIDATE_ACTION_TYPE_NONE);
gst_validate_register_action_type ("load-project", "ges", _load_project,
(GstValidateActionParameter []) {