fix lapse of judgement on logging

This commit is contained in:
Bonn Ortloff
2023-03-29 05:32:05 -05:00
parent bc7fa46feb
commit 68fc85e864

View File

@ -75,7 +75,7 @@ void cmd_stream(const std::vector<std::string> &subArgs) {
downloadedIds.emplace(from_hex(evJson.at("id").get_string())); downloadedIds.emplace(from_hex(evJson.at("id").get_string()));
writer.inbox.push_move({ std::move(evJson), EventSourceType::Stream, url }); writer.inbox.push_move({ std::move(evJson), EventSourceType::Stream, url });
} else { } else {
LW << "[" << ws.connected_addr << "] write policy blocked event" << from_hex(evJson.at("id").get_string()) << ": " << okMsg; LI << "[" << ws.connected_addr << "] write policy blocked event " << evJson.at("id").get_string() << ": " << okMsg;
} }
} else { } else {