Commit 899c332a5b46a374ab2067907c6666f18e868d46
1 parent
1988c445
Exists in
master
and in
2 other branches
Commenting unnecessary message.
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
src/objects/settings/gsettings.c
@@ -99,14 +99,19 @@ | @@ -99,14 +99,19 @@ | ||
99 | 99 | ||
100 | } else { | 100 | } else { |
101 | 101 | ||
102 | +#ifdef DEBUG | ||
102 | g_message("Can't find '%s' loading from default path",filename); | 103 | g_message("Can't find '%s' loading from default path",filename); |
104 | +#endif // DEBUG | ||
103 | settings = g_settings_new(schema_id); | 105 | settings = g_settings_new(schema_id); |
104 | 106 | ||
105 | } | 107 | } |
106 | } | 108 | } |
107 | #else | 109 | #else |
108 | 110 | ||
111 | +#ifdef DEBUG | ||
109 | g_message("Loading '%s' from default path","gschemas.compiled"); | 112 | g_message("Loading '%s' from default path","gschemas.compiled"); |
113 | +#endif // DEBUG | ||
114 | + | ||
110 | settings = g_settings_new(schema_id); | 115 | settings = g_settings_new(schema_id); |
111 | 116 | ||
112 | #endif // DEBUG | 117 | #endif // DEBUG |