aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/Util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Util.cpp b/xbmc/Util.cpp
index 952cc76bd4..5ce3e67305 100644
--- a/xbmc/Util.cpp
+++ b/xbmc/Util.cpp
@@ -557,7 +557,7 @@ bool CUtil::ExcludeFileOrFolder(const std::string& strFileOrFolder, const std::v
}
if (regExExcludes.RegFind(strFileOrFolder) > -1)
{
- CLog::Log(LOGDEBUG, "%s: File '%s' excluded. (Matches exclude rule RegExp:'%s')", __FUNCTION__, strFileOrFolder.c_str(), regexp.c_str());
+ CLog::LogF(LOGDEBUG, "File '{}' excluded. (Matches exclude rule RegExp: '{}')", CURL::GetRedacted(strFileOrFolder), regexp);
return true;
}
}