summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrzej Zaborowski <andrew.zaborowski@intel.com>2009-10-12 22:41:35 +0200
committerDenis Kenzior <denkenz@gmail.com>2009-10-16 11:14:26 -0500
commit2974d69ddf774b6ba9a095c221691f633ee6d8cf (patch)
treebe9dc8145e22a46963cb3f208ea6a11fd5a817e4
parent2d992d791240afb78032d8eed2331eb1de6bc7f2 (diff)
downloadofono-2974d69ddf774b6ba9a095c221691f633ee6d8cf.tar.bz2
Fix: Emit debug message instead of an error
SMS storage is frequently empty at startup, if this is the case, do not use ofono_error, use ofono_debug instead.
-rw-r--r--drivers/atmodem/sms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atmodem/sms.c b/drivers/atmodem/sms.c
index d4258186..b3d6ff5d 100644
--- a/drivers/atmodem/sms.c
+++ b/drivers/atmodem/sms.c
@@ -548,7 +548,7 @@ static void at_cmgl_cb(gboolean ok, GAtResult *result, gpointer user_data)
struct ofono_sms *sms = user_data;
if (!ok)
- ofono_error("Initial listing SMS storage failed!");
+ ofono_debug("Initial listing SMS storage failed!");
at_cmgl_done(sms);
}