Skip to content

Commit

Permalink
* NEW [parquet] Update log level.
Browse files Browse the repository at this point in the history
Signed-off-by: wangha <[email protected]>
  • Loading branch information
wanghaEMQ committed Jan 24, 2025
1 parent e4591df commit dfa36fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/supplemental/nanolib/parquet/parquet_file_queue.cc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ parquet_file_queue::init()
char *file_name = strdup(file.file_path.c_str());
update_queue(file_name);

log_info("Loaded %zu parquet file %s, %p in time "
log_debug("Loaded %zu parquet file %s, %p in time "
"order from %s.",
files.size(), parquet->dir, file_name, file_name);
}
Expand All @@ -104,7 +104,7 @@ void
parquet_file_queue::update_queue(const char *filename)
{
ENQUEUE(queue, (void *) filename);
log_info("queue size: %d, file_count: %d", QUEUE_SIZE(queue),
log_debug("queue size: %d, file_count: %d", QUEUE_SIZE(queue),
node->file_count);
if (QUEUE_SIZE(queue) > node->file_count) {
remove_old_file(queue);
Expand Down

0 comments on commit dfa36fe

Please sign in to comment.