File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,12 +144,12 @@ PyObjectPtr createPythonClass(
144
144
const std::map<std::string, std::string>& kwargs) {
145
145
PyGuard guard;
146
146
PyObjectPtr pyModule (PyImport_ImportModule (moduleName.c_str ()));
147
- LOG (INFO) << " createPythonClass moduleName.c_str:" << moduleName.c_str ();
147
+ // LOG(INFO) << "createPythonClass moduleName.c_str:" << moduleName.c_str();
148
148
CHECK_PY (pyModule) << " Import module " << moduleName << " failed." ;
149
149
PyObjectPtr pyDict (PyModule_GetDict (pyModule.get ()));
150
150
CHECK_PY (pyDict) << " Get Dict failed." ;
151
151
PyObjectPtr pyClass (PyDict_GetItemString (pyDict.get (), className.c_str ()));
152
- LOG (INFO) << " createPythonClass className.c_str():" << className.c_str ();
152
+ // LOG(INFO) << "createPythonClass className.c_str():" << className.c_str();
153
153
CHECK_PY (pyClass) << " Import class " << className << " failed." ;
154
154
PyObjectPtr argsObjectList (PyTuple_New (args.size ()));
155
155
for (size_t i = 0 ; i < args.size (); ++i) {
You can’t perform that action at this time.
0 commit comments