From e0653b1a974352deb298699b8f2bd4b039c75ab5 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Thu, 27 Jun 2019 15:47:37 +0200 Subject: [PATCH] fixed: redact url in log --- xbmc/video/VideoDatabase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/video/VideoDatabase.cpp b/xbmc/video/VideoDatabase.cpp index 4af4ae8e797a8..2884d168339c2 100644 --- a/xbmc/video/VideoDatabase.cpp +++ b/xbmc/video/VideoDatabase.cpp @@ -5907,7 +5907,7 @@ void CVideoDatabase::EraseVideoSettings(const CFileItem &item) { std::string sql = PrepareSQL("DELETE FROM settings WHERE idFile=%i", idFile); - CLog::Log(LOGINFO, "Deleting settings information for files %s", item.GetPath().c_str()); + CLog::Log(LOGINFO, "Deleting settings information for files %s", CURL::GetRedacted(item.GetPath()).c_str()); m_pDS->exec(sql); } catch (...)