Commit 899c332a5b46a374ab2067907c6666f18e868d46

Authored by Perry Werneck
1 parent 1988c445

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 99  
100 100 } else {
101 101  
  102 +#ifdef DEBUG
102 103 g_message("Can't find '%s' loading from default path",filename);
  104 +#endif // DEBUG
103 105 settings = g_settings_new(schema_id);
104 106  
105 107 }
106 108 }
107 109 #else
108 110  
  111 +#ifdef DEBUG
109 112 g_message("Loading '%s' from default path","gschemas.compiled");
  113 +#endif // DEBUG
  114 +
110 115 settings = g_settings_new(schema_id);
111 116  
112 117 #endif // DEBUG
... ...