From 19cadbedfd5ba4daa54aa3818bd22778fbd89eae Mon Sep 17 00:00:00 2001 From: past-due <30942300+past-due@users.noreply.github.com> Date: Tue, 17 Oct 2023 13:59:19 -0400 Subject: [PATCH] replaceTexture: Tweak debug message --- lib/ivis_opengl/tex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ivis_opengl/tex.cpp b/lib/ivis_opengl/tex.cpp index eb5c7cfcf74..7ccc06b5582 100644 --- a/lib/ivis_opengl/tex.cpp +++ b/lib/ivis_opengl/tex.cpp @@ -246,7 +246,7 @@ bool replaceTexture(const WzString &oldfile, const WzString &newfile) pie_AddTexPage(pTexture, tmpname.c_str(), existingTextureType, page); return true; } - debug(LOG_ERROR, "Nothing to replace!"); + debug(LOG_TEXTURE, "Nothing to replace - old (not found): %s, new (not used): %s", oldfile.toUtf8().c_str(), newfile.toUtf8().c_str()); return false; }