Skip to content

Commit

Permalink
Temporary rename (can drop this commit if open-telemetry#422 gets mer…
Browse files Browse the repository at this point in the history
…ged)
  • Loading branch information
Karen Xu committed Dec 7, 2020
1 parent a83ac95 commit 6a33f4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/include/opentelemetry/logs/log_record.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ struct LogRecord
core::SystemTimestamp timestamp; // uint64 nanoseconds since Unix epoch
trace::TraceId trace_id; // byte sequence
trace::SpanId span_id; // byte sequence
trace::TraceFlags trace_flag; // byte
trace::TraceFlags trace_flags; // byte
Severity severity; // Severity enum that combines severity_text and severity_number in the
// LogDataModel (can separate in SDK)

Expand Down
4 changes: 2 additions & 2 deletions exporters/ostream/test/ostream_log_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ TEST(OStreamLogExporter, IntegrationTest)
record.timestamp = now;
record.severity = logs_api::Severity::kInfo;
record.body = "Test Log";
logger->Log(record);
logger->log(record);

// logger->Log("Test Log");
// logger->log("Test Log");

// Restore cout's original streambuf
std::cout.rdbuf(sbuf);
Expand Down

0 comments on commit 6a33f4b

Please sign in to comment.