Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
[WeexCore] Remove log that isn't necessary and may cause performance …
Browse files Browse the repository at this point in the history
…issue.
  • Loading branch information
huanglei.hl committed Mar 27, 2019
1 parent 36dce32 commit ba4147c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions weex_core/Source/core/config/core_environment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ namespace WeexCore {

const std::string WXCoreEnvironment::GetOption(const std::string &key) {
std::map<std::string, std::string>::iterator iter = mOptions.find(key);
LOGE("KEY = %s", key.c_str());
if (iter != mOptions.end()) {
LOGE("KEY = %s, VALUE = %s", key.c_str(), iter->second.c_str());
return iter->second;
} else {
return "";
Expand Down

0 comments on commit ba4147c

Please sign in to comment.