Skip to content

Commit

Permalink
[c++] Fix a minor typo in logging statements (#3099)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored Oct 2, 2024
1 parent e2d1679 commit 897fa0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libtiledbsoma/src/utils/arrow_adapter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ std::unique_ptr<ArrowSchema> ArrowAdapter::arrow_schema_from_tiledb_array(
child->release = &ArrowAdapter::release_schema;
child->private_data = nullptr;
LOG_TRACE(fmt::format(
"[ArrowAdapter] arrow_schema_from_tiledb_array dim {} name {} "
"format {}",
"[ArrowAdapter] arrow_schema_from_tiledb_array dim {} format {} "
"name {}",
i,
child->format,
child->name));
Expand All @@ -245,8 +245,8 @@ std::unique_ptr<ArrowSchema> ArrowAdapter::arrow_schema_from_tiledb_array(
child->private_data = nullptr;

LOG_TRACE(fmt::format(
"[ArrowAdapter] arrow_schema_from_tiledb_array attr {} name {} "
"format {}",
"[ArrowAdapter] arrow_schema_from_tiledb_array attr {} format {} "
"name {}",
i,
child->format,
child->name));
Expand Down

0 comments on commit 897fa0e

Please sign in to comment.