소스 검색

Fix console output to print the correct plugin name.

Sascha Zelzer 14 년 전
부모
커밋
c1b3e0e4cc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Plugins/org.commontk.eventbus/ctkEventBusPlugin.cpp

+ 2 - 2
Plugins/org.commontk.eventbus/ctkEventBusPlugin.cpp

@@ -19,13 +19,13 @@ using namespace QtMobility;
 void ctkEventBusPlugin::start(ctkPluginContext* context)
 {
   Q_UNUSED(context)
-  std::cout << "ctkCore Plugin started\n";
+  std::cout << "org.commontk.eventbus Plugin started\n";
 }
 
 void ctkEventBusPlugin::stop(ctkPluginContext* context)
 {
   Q_UNUSED(context)
-  std::cout << "ctkCore Plugin stopped\n";
+  std::cout << "org.commontk.eventbus Plugin stopped\n";
 }
 
 QObject* ctkEventBusPlugin::createInstance(const QServiceInterfaceDescriptor& descriptor,