Skip to content

Commit

Permalink
csd-settings-remap-manager.c: Only report on missing schemas and
Browse files Browse the repository at this point in the history
keys when debugging.

ref: #396
  • Loading branch information
mtwebster committed Aug 27, 2024
1 parent c762c6f commit d97f923
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/settings-remap/csd-settings-remap-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ on_settings_changed (GSettings *cinnamon_settings,

if (gnome_schema == NULL)
{
g_warning ("Schema not found during settings change - '%s'",
g_debug ("Schema not found during settings change - '%s'",
(gchar *) g_object_get_data (G_OBJECT (gnome_settings), "schema"));
return;
}
Expand Down Expand Up @@ -174,7 +174,7 @@ csd_settings_remap_manager_start (CsdSettingsRemapManager *manager,

if (!schema_exists (manager, schemas[i].gnome_schema))
{
g_warning ("Skipping schema '%s' - doesn't exist", schemas[i].gnome_schema);
g_debug ("Skipping schema '%s' - doesn't exist", schemas[i].gnome_schema);
continue;
}

Expand Down

0 comments on commit d97f923

Please sign in to comment.