Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
copperlight committed May 29, 2024
1 parent cf2764e commit ea83ac7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/atlas-agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,8 @@ int main(int argc, char* const argv[]) {
nvidia_lib = std::make_unique<Nvml>();
logger->info("Will attempt to collect GPU metrics");
} catch (atlasagent::NvmlException& e) {
logger->info("Will not collect GPU metrics: {}", e.what());
std::string err = e.what();
logger->info("Will not collect GPU metrics: {}", err);
}

atlasagent::HttpClient<>::GlobalInit();
Expand Down

0 comments on commit ea83ac7

Please sign in to comment.