diff options
| author | 2012-01-06 10:30:56 -0800 | |
|---|---|---|
| committer | 2012-01-06 10:30:56 -0800 | |
| commit | e9ed8cb6c32ddaa2f82b6a130a4fc6ea6875024d (patch) | |
| tree | 6eec8d541334d19af13d46239d603d86f52eefd7 /libs/utils/PropertyMap.cpp | |
| parent | e11e6b7cce06c8fb7ac2cd4597c69c93c478cd15 (diff) | |
| parent | 32397c1cd3327905173b36baa6fd1c579bc328ff (diff) | |
Merge "Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGE"
Diffstat (limited to 'libs/utils/PropertyMap.cpp')
| -rw-r--r-- | libs/utils/PropertyMap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/PropertyMap.cpp b/libs/utils/PropertyMap.cpp index 99603abca5..d801609a90 100644 --- a/libs/utils/PropertyMap.cpp +++ b/libs/utils/PropertyMap.cpp @@ -84,7 +84,7 @@ bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const { char* end; int value = strtol(stringValue.string(), & end, 10); if (*end != '\0') { - LOGW("Property key '%s' has invalid value '%s'. Expected an integer.", + ALOGW("Property key '%s' has invalid value '%s'. Expected an integer.", key.string(), stringValue.string()); return false; } @@ -101,7 +101,7 @@ bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const { char* end; float value = strtof(stringValue.string(), & end); if (*end != '\0') { - LOGW("Property key '%s' has invalid value '%s'. Expected a float.", + ALOGW("Property key '%s' has invalid value '%s'. Expected a float.", key.string(), stringValue.string()); return false; } |