ChatON: forgot to get c string format

This commit is contained in:
HanishKVC 2024-05-16 23:49:38 +05:30
parent 0cbfd40f18
commit 999bd396d0

View file

@ -465,7 +465,7 @@ public:
std::string tmpl = tmplId;
if (!tmpl_exists(tmpl)) {
tmpl = tmplFallback;
LDBUG_LN("DBUG:%s:Tmpl [%s] missing, fallback to [%s]", __func__, tmplId, tmpl);
LDBUG_LN("DBUG:%s:Tmpl [%s] missing, fallback to [%s]", __func__, tmplId.c_str(), tmpl.c_str());
if (!tmpl_exists(tmpl)) {
return false;
}