diff options
author | Michael Catanzaro <mcatanzaro@igalia.com> | 2019-01-08 11:55:00 -0600 |
---|---|---|
committer | Jan-Michael Brummer <jan.brummer@tabos.org> | 2019-01-08 18:12:32 +0000 |
commit | ccc97157388112def582eaaac1bad9ca00bebb31 (patch) | |
tree | d4b64c3e8d3433ca395a2261ee494c2d6949805f /lib/ephy-web-app-utils.c | |
parent | b5ed7abb6f8e061b41d25b64896bc9831f9d5a96 (diff) | |
download | epiphany-ccc97157388112def582eaaac1bad9ca00bebb31.tar.gz |
web-app-utils: print warning when web app creation fails
Web app creation failure is a big deal. This merits more than a debug
logging statement.
Diffstat (limited to 'lib/ephy-web-app-utils.c')
-rw-r--r-- | lib/ephy-web-app-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-web-app-utils.c b/lib/ephy-web-app-utils.c index 5c9402efd..5802b612f 100644 --- a/lib/ephy-web-app-utils.c +++ b/lib/ephy-web-app-utils.c @@ -336,13 +336,13 @@ ephy_web_application_create (const char *id, * view, do nothing. */ profile_dir = ephy_web_application_get_profile_directory (id); if (g_file_test (profile_dir, G_FILE_TEST_IS_DIR)) { - LOG ("Profile directory %s already exists", profile_dir); + g_warning ("Profile directory %s already exists", profile_dir); goto out; } /* Create the profile directory, populate it. */ if (g_mkdir (profile_dir, 488) == -1) { - LOG ("Failed to create directory %s", profile_dir); + g_warning ("Failed to create directory %s", profile_dir); goto out; } |