Skip to content
4 changes: 2 additions & 2 deletions src/model_config_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,8 @@ GetNormalizedModelConfig(
// to auto-complete.
RETURN_IF_ERROR(
AutoCompleteBackendFields(model_name, std::string(path), config));
LOG_VERBOSE(1) << "Server side auto-completed config: "
<< config->DebugString();

LOG_PROTOBUF_VERBOSE(1, "Server side auto-completed config: ", (*config));

RETURN_IF_ERROR(NormalizeModelConfig(min_compute_capability, config));

Expand Down
11 changes: 5 additions & 6 deletions src/server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -603,8 +603,7 @@ InferenceServer::PrintBackendAndModelSummary()
repoagent_record.emplace_back(repoagent_pair.second);
repoagents_table.InsertRow(repoagent_record);
}
std::string repoagents_table_string = repoagents_table.PrintTable();
LOG_INFO << repoagents_table_string;
LOG_TABLE_INFO(repoagents_table);

// Backends Summary
std::vector<std::string> backend_headers;
Expand All @@ -630,8 +629,8 @@ InferenceServer::PrintBackendAndModelSummary()
}
backends_table.InsertRow(backend_record);
}
std::string backends_table_string = backends_table.PrintTable();
LOG_INFO << backends_table_string;

LOG_TABLE_INFO(backends_table);

// Models Summary
auto model_states = model_repository_manager_->ModelStates();
Expand Down Expand Up @@ -673,8 +672,8 @@ InferenceServer::PrintBackendAndModelSummary()
}
}
}
std::string models_table_string = models_table.PrintTable();
LOG_INFO << models_table_string;

LOG_TABLE_INFO(models_table);

return Status::Success;
}
Expand Down
3 changes: 1 addition & 2 deletions src/tritonserver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2554,8 +2554,7 @@ TRITONSERVER_ServerNew(
options_table.InsertRow(std::vector<std::string>{
"cache_enabled", std::to_string(lserver->ResponseCacheEnabled())});

std::string options_table_string = options_table.PrintTable();
LOG_INFO << options_table_string;
LOG_TABLE_INFO(options_table);

if (!status.IsOk()) {
if (loptions->ExitOnError()) {
Expand Down