diff options
| -rw-r--r-- | src/lib/grok/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/grok/util.cc b/src/lib/grok/util.cc index 51b9c1037..3d5caeba1 100644 --- a/src/lib/grok/util.cc +++ b/src/lib/grok/util.cc @@ -52,7 +52,7 @@ get_gpu_names() return gpu_names; } catch (std::exception& e) { - LOG_ERROR("Could not fetch GPU names: %1", e.what()); + LOG_ERROR("Could not fetch GPU names: {}", e.what()); return {}; } } |
