diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-10-06 15:26:40 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-10-06 15:26:40 -0500 |
commit | 997f89bae00ec896c87a8a3877d2d16fc0175f99 (patch) | |
tree | 378d459bd08046d6939940507cd4768277959ce2 /src/exporter.cpp | |
parent | 0e88cc16c37844929f463ea6b04a288630ffe9d9 (diff) | |
download | ayatana-indicator-display-997f89bae00ec896c87a8a3877d2d16fc0175f99.tar.gz ayatana-indicator-display-997f89bae00ec896c87a8a3877d2d16fc0175f99.tar.bz2 ayatana-indicator-display-997f89bae00ec896c87a8a3877d2d16fc0175f99.zip |
make a debugging message go through g_debug() instead of g_message()
Diffstat (limited to 'src/exporter.cpp')
-rw-r--r-- | src/exporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exporter.cpp b/src/exporter.cpp index f45d9d6..8b2a72a 100644 --- a/src/exporter.cpp +++ b/src/exporter.cpp @@ -141,7 +141,7 @@ private: profile->header().changed().connect([action_group,action_name](const Header& header){ auto state = create_header_state(header); auto tmp = g_variant_print(state, true); - g_message("header changed; updating action state to '%s'", tmp); + g_debug("header changed; updating action state to '%s'", tmp); g_action_group_change_action_state(G_ACTION_GROUP(action_group), action_name.c_str(), create_header_state(header)); |