]> git.0d.be Git - empathy.git/commitdiff
connectivity: small fix to a debug message
authorJonny Lamb <jonnylamb@gnome.org>
Fri, 16 Oct 2009 17:30:59 +0000 (18:30 +0100)
committerJonny Lamb <jonnylamb@gnome.org>
Fri, 16 Oct 2009 17:30:59 +0000 (18:30 +0100)
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
libempathy/empathy-connectivity.c

index c6551ae5cbefd5806d250ed960d64a06ba3661e7..f6a723ef6e91f6e586d92c4fc422a5097ae39147 100644 (file)
@@ -105,8 +105,8 @@ connectivity_nm_state_change_cb (NMClient *client,
   new_nm_connected = !(state == NM_STATE_CONNECTING
       || state == NM_STATE_DISCONNECTED);
 
-  DEBUG ("New NetworkManager network state %d (connected: %d", state,
-    new_nm_connected);
+  DEBUG ("New NetworkManager network state %d (connected: %s)", state,
+      new_nm_connected ? "true" : "false");
 
   connectivity_change_state (connectivity, new_nm_connected);
 }