diff options
author | Ted Gould <ted@gould.cx> | 2011-03-14 14:33:49 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-03-14 14:33:49 -0500 |
commit | b29c6f2c3243a688a3962ccf10d657f97bb08983 (patch) | |
tree | c8bb1e5ef1151015913c2ba3ab6fb0e3fc0492f5 | |
parent | 31299f3d0b47b350057886b90094e9b5552c6b69 (diff) | |
download | ayatana-indicator-application-b29c6f2c3243a688a3962ccf10d657f97bb08983.tar.gz ayatana-indicator-application-b29c6f2c3243a688a3962ccf10d657f97bb08983.tar.bz2 ayatana-indicator-application-b29c6f2c3243a688a3962ccf10d657f97bb08983.zip |
Debug message on missing override file.
-rw-r--r-- | src/application-service-appstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index b0f4a0c..91fd226 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -374,7 +374,7 @@ load_override_file (GHashTable * hash, const gchar * filename) g_return_if_fail(filename != NULL); if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { - g_debug("Override file '%s' doesn't exist"); + g_debug("Override file '%s' doesn't exist", filename); return; } |