Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions collector/lib/Utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,11 @@ std::optional<std::string> SanitizedUTF8(std::string_view str) {

void LogProtobufMessage(const google::protobuf::Message& msg) {
using namespace google::protobuf::util;

if (!logging::CheckLogLevel(logging::LogLevel::DEBUG)) {
return;
}

std::string output;
absl::Status status = MessageToJsonString(msg, &output, JsonPrintOptions{});
if (status.ok()) {
Expand Down
Loading