summaryrefslogtreecommitdiff
path: root/src/lib/grok/util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-02-21 01:17:40 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-21 01:17:40 +0100
commit9f9c91448f4796981497cd9d12b285ccd08f4a6a (patch)
tree8f555e5886c75b3de5394c88942ade4213edaec4 /src/lib/grok/util.cc
parent92a4984c94ae3148f6c7a66665c65608e7016576 (diff)
Fix incorrect format placeholder.
Diffstat (limited to 'src/lib/grok/util.cc')
-rw-r--r--src/lib/grok/util.cc2
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 {};
}
}