Skip to content

Commit

Permalink
add log
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglei1949 committed May 23, 2024
1 parent 8d393fa commit a13244e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flex/storages/metadata/local_file_metadata_store.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Result<LocalFileMetadataStore::meta_key_t> LocalFileMetadataStore::CreateMeta(
std::unique_lock<std::mutex> lock(meta_mutex_);
meta_key_t meta_key;
ASSIGN_AND_RETURN_IF_RESULT_NOT_OK(meta_key, get_next_meta_key(meta_kind));
VLOG(10) << "got next meta key: " << meta_key;
LOG(INFO) << "got next meta key: " << meta_key << ", for " << meta_kind;
if (is_key_exist(meta_kind, meta_key)) {
return Status(StatusCode::InternalError,
"When creating meta, got an existing key");
Expand Down

0 comments on commit a13244e

Please sign in to comment.