aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorPierre-Luc Beaudoin <pierre-luc.beaudoin@collabora.co.uk>2009-05-30 03:51:31 +0800
committerPierre-Luc Beaudoin <pierre-luc.beaudoin@collabora.co.uk>2009-06-01 23:35:33 +0800
commit9713a23a9b42860aa76f02b82cbc7a761110c3aa (patch)
tree3e2b2e12055203e7784939b5d602236280c01833 /libempathy-gtk
parentb9f8f5f022fc95a59ae4a20f65b2272ecbdc84c1 (diff)
downloadgsoc2013-empathy-9713a23a9b42860aa76f02b82cbc7a761110c3aa.tar
gsoc2013-empathy-9713a23a9b42860aa76f02b82cbc7a761110c3aa.tar.gz
gsoc2013-empathy-9713a23a9b42860aa76f02b82cbc7a761110c3aa.tar.bz2
gsoc2013-empathy-9713a23a9b42860aa76f02b82cbc7a761110c3aa.tar.lz
gsoc2013-empathy-9713a23a9b42860aa76f02b82cbc7a761110c3aa.tar.xz
gsoc2013-empathy-9713a23a9b42860aa76f02b82cbc7a761110c3aa.tar.zst
gsoc2013-empathy-9713a23a9b42860aa76f02b82cbc7a761110c3aa.zip
Use DEBUG instead of printerr
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-location-manager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-location-manager.c b/libempathy-gtk/empathy-location-manager.c
index 20ce3654a..4c4e5e10c 100644
--- a/libempathy-gtk/empathy-location-manager.c
+++ b/libempathy-gtk/empathy-location-manager.c
@@ -506,7 +506,7 @@ update_resources (EmpathyLocationManager *location_manager)
GEOCLUE_ACCURACY_LEVEL_NONE, 0, TRUE, priv->resources,
NULL))
{
- g_printerr ("set_requirements failed");
+ DEBUG ("set_requirements failed");
return;
}
@@ -542,7 +542,7 @@ setup_geoclue (EmpathyLocationManager *location_manager)
priv->gc_client, &error);
if (priv->gc_position == NULL)
{
- g_printerr ("Failed to create GeocluePosition: %s", error->message);
+ DEBUG ("Failed to create GeocluePosition: %s", error->message);
g_error_free (error);
return;
}
@@ -555,7 +555,7 @@ setup_geoclue (EmpathyLocationManager *location_manager)
priv->gc_client, &error);
if (priv->gc_address == NULL)
{
- g_printerr ("Failed to create GeoclueAddress: %s", error->message);
+ DEBUG ("Failed to create GeoclueAddress: %s", error->message);
g_error_free (error);
return;
}