Skip to content

Commit

Permalink
Replace DVLOG with VLOG per PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Sep 11, 2024
1 parent ae67bf4 commit b64edbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/mrc/src/internal/system/device_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ struct NvmlState
m_nvml_handle = std::make_unique<NvmlHandle>();
} catch (std::runtime_error e)
{
DVLOG(1) << "NVML: " << e.what() << ". Setting DeviceCount to 0, CUDA will not be initialized";
VLOG(1) << "NVML: " << e.what() << ". Setting DeviceCount to 0, CUDA will not be initialized";

Check warning on line 153 in cpp/mrc/src/internal/system/device_info.cpp

View check run for this annotation

Codecov / codecov/patch

cpp/mrc/src/internal/system/device_info.cpp#L153

Added line #L153 was not covered by tests
return;
}

Expand Down

0 comments on commit b64edbd

Please sign in to comment.