aboutsummaryrefslogtreecommitdiff
path: root/btif/src/btif_config_transcode.cc
diff options
context:
space:
mode:
Diffstat (limited to 'btif/src/btif_config_transcode.cc')
-rw-r--r--btif/src/btif_config_transcode.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/btif/src/btif_config_transcode.cc b/btif/src/btif_config_transcode.cc
index 75ebd7738..090b4e15a 100644
--- a/btif/src/btif_config_transcode.cc
+++ b/btif/src/btif_config_transcode.cc
@@ -29,15 +29,14 @@ std::unique_ptr<config_t> btif_config_transcode(const char* xml_filename) {
XMLDocument document;
int error = document.LoadFile(xml_filename);
if (error != XML_SUCCESS) {
- LOG_ERROR(LOG_TAG, "%s unable to load XML file '%s': %d", __func__,
- xml_filename, error);
+ LOG_ERROR("%s unable to load XML file '%s': %d", __func__, xml_filename,
+ error);
return NULL;
}
XMLElement* rootElement = document.RootElement();
if (!rootElement) {
- LOG_ERROR(LOG_TAG,
- "%s unable to find root element; assuming corrupted config file.",
+ LOG_ERROR("%s unable to find root element; assuming corrupted config file.",
__func__);
return NULL;
}