| Index: Shared/PluginDebug.cpp |
| =================================================================== |
| --- a/Shared/PluginDebug.cpp |
| +++ b/Shared/PluginDebug.cpp |
| @@ -191,7 +191,7 @@ |
| } |
| -void CPluginDebug::DebugResultBlocking(const CString& type, const CString& src, const CString& filter, const CString& filterFile) |
| +void CPluginDebug::DebugResultBlocking(const CString& type, const CString& src) |
| { |
| CString srcTrunc = src; |
| if (srcTrunc.GetLength() > 100) |
| @@ -200,13 +200,13 @@ |
| } |
| CString blocking; |
| - blocking.Format(L"%-8s %-100s Blocked %-20s - %s", type, srcTrunc, filterFile, filter); |
| + blocking.Format(L"%-8s %-100s Blocked %s", type, srcTrunc); |
| DebugResult(blocking); |
| } |
| -void CPluginDebug::DebugResultHiding(const CString& tag, const CString& src, const CString& filter, const CString& filterFile) |
| +void CPluginDebug::DebugResultHiding(const CString& tag, const CString& src, const CString& filter) |
| { |
| CString srcTrunc = src; |
| if (srcTrunc.GetLength() > 100) |
| @@ -215,7 +215,7 @@ |
| } |
| CString blocking; |
| - blocking.Format(L"%-8s %-100s Hidden %-20s - %s", tag, srcTrunc, filterFile, filter); |
| + blocking.Format(L"%-8s %-100s Hidden - %s", tag, srcTrunc, filter); |
| DebugResult(blocking); |
| } |