dots: Do not WARN when a file can't be removed

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9122>
This commit is contained in:
Thibault Saunier 2025-06-04 10:38:12 +02:00
parent c4e9fc288a
commit a0ec9a4eea

View File

@ -167,7 +167,7 @@ clean_dot_files (const gchar * dir_path)
/* Delete all matched files */
for (l = paths; l; l = l->next) {
if (g_unlink (l->data) != 0) {
GST_WARNING ("Could not delete file %s", (gchar *) l->data);
GST_DEBUG ("Could not delete file %s", (gchar *) l->data);
}
}