diff options
author | Dan Williams <dcbw@redhat.com> | 2011-01-03 14:42:44 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-01-03 14:42:44 -0600 |
commit | 63cb7f29a97719acd0810b42b42e09dbab461284 (patch) | |
tree | 8c951aee6f75ab8996c800fc6c0a6f084370af02 | |
parent | 9733746dc10e1cf5d4929258aae6ab405b2f79cd (diff) |
huawei: quiet annoying log message
-rw-r--r-- | plugins/mm-modem-huawei-gsm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mm-modem-huawei-gsm.c b/plugins/mm-modem-huawei-gsm.c index 42992564..9d8d16da 100644 --- a/plugins/mm-modem-huawei-gsm.c +++ b/plugins/mm-modem-huawei-gsm.c @@ -664,7 +664,9 @@ handle_mode_change (MMAtSerialPort *port, return; } - g_debug ("Access Technology: %d", act); + if (mm_options_debug ()) + g_debug ("Access Technology: %d", act); + mm_generic_gsm_update_access_technology (MM_GENERIC_GSM (self), act); } |