summaryrefslogtreecommitdiffstats
path: root/gst-libs
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-05-29 17:00:55 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-05-29 17:00:55 +0000
commitf6f7d4428ae0c9207985d90150b3991a58701475 (patch)
tree114822596bae609dcac670ea7a841b4b4e0a8906 /gst-libs
parent2c98438c994b119256ded007808f153a4a5b6f6a (diff)
downloadgst-plugins-bad-f6f7d4428ae0c9207985d90150b3991a58701475.tar.gz
gst-plugins-bad-f6f7d4428ae0c9207985d90150b3991a58701475.tar.bz2
gst-plugins-bad-f6f7d4428ae0c9207985d90150b3991a58701475.zip
don't warn on recoverable problems
Original commit message from CVS: don't warn on recoverable problems
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/gconf/gconf.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gst-libs/gst/gconf/gconf.c b/gst-libs/gst/gconf/gconf.c
index 494ca9f1..b94587ed 100644
--- a/gst-libs/gst/gconf/gconf.c
+++ b/gst-libs/gst/gconf/gconf.c
@@ -78,7 +78,7 @@ gst_gconf_get_string (const gchar *key)
if (error)
{
- g_warning ("gst_gconf_get_string: error: %s\n", error->message);
+ g_print ("gst_gconf_get_string: error: %s\n", error->message);
g_error_free (error);
}
/* FIXME: decide if we want to strdup this value; if we do, check for NULL */
@@ -101,7 +101,7 @@ gst_gconf_set_string (const gchar *key, const gchar *value)
gconf_client_set_string (gst_gconf_get_client (), full_key, value, &error);
if (error)
{
- g_warning ("gst_gconf_set_string: error: %s\n", error->message);
+ g_print ("gst_gconf_set_string: error: %s\n", error->message);
g_error_free (error);
}
g_free (full_key);
@@ -185,7 +185,7 @@ gst_gconf_get_default_audio_sink (void)
if (!ret)
g_warning ("No GConf default audio sink key and osssink doesn't work");
else
- g_warning ("GConf audio sink not found, using osssink");
+ g_print ("GConf audio sink not found, using osssink");
}
return ret;
@@ -211,7 +211,7 @@ gst_gconf_get_default_video_sink (void)
if (!ret)
g_warning ("No GConf default video sink key and xvideosink doesn't work");
else
- g_warning ("GConf video sink not found, using xvideosink");
+ g_print ("GConf video sink not found, using xvideosink");
}
return ret;
@@ -237,7 +237,7 @@ gst_gconf_get_default_audio_src (void)
if (!ret)
g_warning ("No GConf default audio src key and osssrc doesn't work");
else
- g_warning ("GConf audio src not found, using osssrc");
+ g_print ("GConf audio src not found, using osssrc");
}
return ret;
@@ -264,7 +264,7 @@ gst_gconf_get_default_video_src (void)
if (!ret)
g_warning ("No GConf default video src key and videotestrc doesn't work");
else
- g_warning ("GConf video src not found, using videotestrc");
+ g_print ("GConf video src not found, using videotestrc");
}
return ret;
@@ -290,7 +290,7 @@ gst_gconf_get_default_visualisation_element (void)
if (!ret)
g_warning ("No GConf default visualisation plugin key and goom doesn't work");
else
- g_warning ("GConf visualisation plugin not found, using goom");
+ g_print ("GConf visualisation plugin not found, using goom");
}
return ret;