Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[c++] Fix a minor typo in logging statements #3099

Merged
merged 1 commit into from
Oct 2, 2024
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
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
Loading