We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69e5a9f commit e1c8c7cCopy full SHA for e1c8c7c
1 file changed
wrapper.cpp
@@ -498,6 +498,13 @@ const char *WrapperAPI wrapperDebugInfo(const void *handle) { return NULL; }
498
499
int WrapperAPI wrapperNotify(pDataList *data) {
500
spdlog::debug("wrapperNotify");
501
+
502
int ret = 0;
503
+ ret = retpyWrapper->wrapperNotify(data);
504
+ if ret != 0 {
505
+ spdlog::get("stderr_console")->error("wrapper notify error!");
506
+ return ret;
507
+ }
508
509
return ret;
510
}
0 commit comments