Skip to content

Commit a76557e

Browse files
committed
Filter out logging of: "The method isn't applicable to the in-memory object".
1 parent f7e0ad4 commit a76557e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/ComHelpers/CallbackHelper.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ void CallbackHelper::ErrorMsg(const CString className, ICallback* localCback, BS
122122
if (callback || Debug::IsDebugMode())
123123
{
124124
if (strcmp(message, "No Error") == 0) return;
125+
if (strcmp(message, "The method isn't applicable to the in-memory object") == 0) return;
125126

126127
TCHAR buffer[1024];
127128
va_list args;

0 commit comments

Comments
 (0)