diff options
author | Dan Williams <dcbw@redhat.com> | 2010-11-29 11:50:55 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-11-29 11:50:55 -0600 |
commit | a00966d4aa0973aef9a520b966d6c5a93d094053 (patch) | |
tree | 157df003324df9fe1904d69423606d6041f460b9 | |
parent | 1df1ff38b0ad93d80647895115251033ffc38e65 (diff) |
huawei: don't spam syslog with tx/rx stats (lp:673457)
-rw-r--r-- | plugins/mm-modem-huawei-gsm.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/mm-modem-huawei-gsm.c b/plugins/mm-modem-huawei-gsm.c index 545d0831..cde4b4a2 100644 --- a/plugins/mm-modem-huawei-gsm.c +++ b/plugins/mm-modem-huawei-gsm.c @@ -29,6 +29,7 @@ #include "mm-callback-info.h" #include "mm-at-serial-port.h" #include "mm-serial-parsers.h" +#include "mm-options.h" static void modem_init (MMModem *modem_class); static void modem_gsm_network_init (MMModemGsmNetwork *gsm_network_class); @@ -673,8 +674,10 @@ handle_status_change (MMAtSerialPort *port, str = g_match_info_fetch (match_info, 1); if (sscanf (str, "%x,%x,%x,%x,%x,%x,%x", &n1, &n2, &n3, &n4, &n5, &n6, &n7)) { - g_debug ("Duration: %d Up: %d Kbps Down: %d Kbps Total: %d Total: %d\n", - n1, n2 * 8 / 1000, n3 * 8 / 1000, n4 / 1024, n5 / 1024); + if (mm_options_debug ()) { + g_debug ("Duration: %d Up: %d Kbps Down: %d Kbps Total: %d Total: %d\n", + n1, n2 * 8 / 1000, n3 * 8 / 1000, n4 / 1024, n5 / 1024); + } } g_free (str); } |