summaryrefslogtreecommitdiff
path: root/src/up-history.c
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2011-10-06 09:12:04 +0100
committerRichard Hughes <richard@hughsie.com>2011-10-06 09:12:04 +0100
commit58f77e8aa6e987ebe83358c9bb30e94b80756cdb (patch)
tree78d750d8ef1790868ee63e2f255be7e5ca8493f8 /src/up-history.c
parent60e5e2918872bca5771d439578f95bb42bbe3563 (diff)
downloadupower-58f77e8aa6e987ebe83358c9bb30e94b80756cdb.tar.gz
Don't spam the log when we're saving history when on low power
Resolves: https://bugs.freedesktop.org/show_bug.cgi?id=41486
Diffstat (limited to 'src/up-history.c')
-rw-r--r--src/up-history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/up-history.c b/src/up-history.c
index 449b294..945db8f 100644
--- a/src/up-history.c
+++ b/src/up-history.c
@@ -631,7 +631,7 @@ up_history_schedule_save (UpHistory *history)
/* if low power, then don't batch up save requests */
ret = up_history_is_low_power (history);
if (ret) {
- g_warning ("saving directly to disk as low power");
+ g_debug ("saving directly to disk as low power");
up_history_save_data (history);
return TRUE;
}