Skip to content

Commit

Permalink
- Change RawPropsParser logs to WARNING (#46025)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #46025

Changelog:
[General][Fixed] - Change RawPropsParser logs from ERROR level to WARNING

Reviewed By: christophpurrer

Differential Revision: D61304854

fbshipit-source-id: bc16df4916a54cb7c1fa57f359eab3d9eed4e2f4
  • Loading branch information
Bowen Xie authored and facebook-github-bot committed Aug 15, 2024
1 parent 9bc32a0 commit 68c0720
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void RawPropsKeyMap::reindex() noexcept {
auto result = it;
while (++it != end) {
if (hasSameName(*result, *it)) {
LOG(ERROR)
LOG(WARNING)
<< "Component property map contains multiple entries for '"
<< std::string_view(it->name, it->length)
<< "'. Ensure all calls to convertRawProp use a consistent prefix, name and suffix.";
Expand Down

0 comments on commit 68c0720

Please sign in to comment.