Skip to content

Commit 4fed179

Browse files
authored
Fix typos in log messages (#1523)
1 parent f123734 commit 4fed179

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

server/streamreader/metadata.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ void Metadata::fromJson(const json& j)
173173
for (const auto& element : j.items())
174174
{
175175
if (supported_tags.find(element.key()) == supported_tags.end())
176-
LOG(WARNING, LOG_TAG) << "Tag not supoorted: " << element.key() << "\n";
176+
LOG(WARNING, LOG_TAG) << "Tag not supported: " << element.key() << "\n";
177177
}
178178

179179
readTag(j, "trackId", track_id);

server/streamreader/properties.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void Properties::fromJson(const json& j)
125125
bool is_rw = (rw_props.find(element.key()) != rw_props.end());
126126
bool is_ro = (ro_props.find(element.key()) != ro_props.end());
127127
if (!is_rw && !is_ro)
128-
LOG(WARNING, LOG_TAG) << "Property not supoorted: " << element.key() << "\n";
128+
LOG(WARNING, LOG_TAG) << "Property not supported: " << element.key() << "\n";
129129
}
130130

131131
std::optional<std::string> opt;

0 commit comments

Comments
 (0)