This repository was archived by the owner on Jul 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
opencensus/exporters/trace Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ namespace opencensus {
2323namespace exporters {
2424namespace trace {
2525
26- void StdOutExporter ::Export (
26+ void StdoutExporter ::Export (
2727 const std::vector<::opencensus::trace::exporter::SpanData>& spans) {
2828 for (const auto & span : spans) {
2929 std::cout << span.DebugString () << " \n " ;
3030 }
3131}
3232
33- void StdOutExporter ::Register () {
33+ void StdoutExporter ::Register () {
3434 ::opencensus::trace::exporter::SpanExporter::RegisterHandler (
35- absl::make_unique<StdOutExporter >());
35+ absl::make_unique<StdoutExporter >());
3636}
3737
3838} // namespace trace
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ namespace opencensus {
2424namespace exporters {
2525namespace trace {
2626
27- class StdOutExporter
27+ class StdoutExporter
2828 : public ::opencensus::trace::exporter::SpanExporter::Handler {
2929 public:
3030 void Export (const std::vector<::opencensus::trace::exporter::SpanData>& spans)
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class TraceExporterTest : public ::testing::Test {
2929 TraceExporterTest () {}
3030
3131 protected:
32- StdOutExporter handler_;
32+ StdoutExporter handler_;
3333};
3434
3535TEST_F (TraceExporterTest, ExportTrace) {
You can’t perform that action at this time.
0 commit comments