aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-15 15:08:49 +0200
committerStefan Boberg <[email protected]>2021-09-15 15:08:49 +0200
commit18c112f96d7a9e033050bb83e3a523a6767e7b9f (patch)
treea46b4381e88f477408999d5ba4728aa831178259
parentFixed up invalid fmt formatting strings (diff)
downloadzen-18c112f96d7a9e033050bb83e3a523a6767e7b9f.tar.xz
zen-18c112f96d7a9e033050bb83e3a523a6767e7b9f.zip
Switched some Jupiter logging to not use `_format` - this is handled by the logging anyway so can just pass in the format string and args
-rw-r--r--zenserver/upstream/jupiter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenserver/upstream/jupiter.cpp b/zenserver/upstream/jupiter.cpp
index 29fee1d32..0af92da6d 100644
--- a/zenserver/upstream/jupiter.cpp
+++ b/zenserver/upstream/jupiter.cpp
@@ -268,7 +268,7 @@ CloudCacheClient::CloudCacheClient(const CloudCacheClientOptions& Options)
{
if (!Options.OAuthProvider.starts_with("http://"sv) && !Options.OAuthProvider.starts_with("https://"sv))
{
- ZEN_WARN("bad provider specification: '{}' - must be fully qualified"_format(Options.OAuthProvider).c_str());
+ ZEN_WARN("bad provider specification: '{}' - must be fully qualified", Options.OAuthProvider);
m_IsValid = false;
return;