diff options
author | Ondrej Holy <oholy@redhat.com> | 2017-01-20 16:16:33 +0100 |
---|---|---|
committer | Ondrej Holy <oholy@redhat.com> | 2017-01-24 12:03:01 +0100 |
commit | 3959a77fa4a7316024e716c9014b788870d4ed37 (patch) | |
tree | 404d660627c7d2298308d7e82029b1a0b9a59205 /client | |
parent | 0a1ac603976c94d586eaa471101cee4eefdd4e16 (diff) | |
download | gvfs-3959a77fa4a7316024e716c9014b788870d4ed37.tar.gz |
Add prefixes in debug messages
There is a lot of messages if all debug output from gvfs is enabled.
Let's add prefixes in order to find easily origin of the messages.
Diffstat (limited to 'client')
-rw-r--r-- | client/gvfsfusedaemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/gvfsfusedaemon.c b/client/gvfsfusedaemon.c index 4b1351dc..69664904 100644 --- a/client/gvfsfusedaemon.c +++ b/client/gvfsfusedaemon.c @@ -105,7 +105,7 @@ log_debug (const gchar *log_domain, gpointer unused_data) { if (gvfs_get_debug ()) - g_print ("%s", message); + g_print ("fuse: %s", message); } typedef struct { |