diff options
| author | Jonathon Jongsma <jjongsma@redhat.com> | 2014-09-05 11:15:52 -0500 |
|---|---|---|
| committer | Jonathon Jongsma <jjongsma@redhat.com> | 2014-09-05 11:15:52 -0500 |
| commit | 75b7ff0fa2dc7e819a09340ce7600498092c9d85 (patch) | |
| tree | 1b248d83cef201fc3a5d7c3a4c5479b049301013 /src | |
| parent | 2561c171e74747f47593192c5e9fd663fc3d0d8f (diff) | |
Don't print warning for missing comment in config file
Change g_warning to g_debug as suggested by Marc-Andre
Diffstat (limited to 'src')
| -rw-r--r-- | src/virt-viewer-app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c index b60ce2d..80ccc3b 100644 --- a/src/virt-viewer-app.c +++ b/src/virt-viewer-app.c @@ -263,7 +263,7 @@ virt_viewer_app_save_config(VirtViewerApp *self) // with the vm name so user can make sense of it later. gchar *comment = g_key_file_get_comment(priv->config, priv->uuid, NULL, &error); if (error) { - g_warning("Unable to get comment from key file: %s", error->message); + g_debug("Unable to get comment from key file: %s", error->message); g_clear_error(&error); } else { if (!comment || *comment == '\0') |
