We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b1b41f commit a735e42Copy full SHA for a735e42
src/rime/module.cc
@@ -26,12 +26,13 @@ void ModuleManager::LoadModule(RimeModule* module) {
26
if (!module || loaded_.find(module) != loaded_.end()) {
27
return;
28
}
29
- DLOG(INFO) << "loading module: " << module;
+ DLOG(INFO) << "loading module: " << module->module_name;
30
loaded_.insert(module);
31
if (module->initialize != NULL) {
32
module->initialize();
33
} else {
34
- LOG(WARNING) << "missing initialize() function in module: " << module;
+ LOG(WARNING) << "missing initialize() function in module: "
35
+ << module->module_name;
36
37
38
0 commit comments