pkg/nvidia: Tweak a debug log to avoid an abbreviation

It's better to avoid abbreviations when the length of the string and the
depth of the indentation are favourable.

https://github.com/containers/toolbox/pull/1541
This commit is contained in:
Debarshi Ray 2024-09-13 15:33:25 +02:00
parent 09dcdb492a
commit 977c3d98a4
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ func GenerateCDISpec() (*specs.Spec, error) {
hasNvml, reason := info.HasNvml()
if !hasNvml {
logrus.Debugf("Generating Container Device Interface for NVIDIA: NVML not found: %s", reason)
logrus.Debugf("Generating Container Device Interface for NVIDIA: Management Library not found: %s",
reason)
}
isTegra, reason := info.IsTegraSystem()