Disable launch-time loading of social stats logger & place detector 83/67583/1
authorMu-Woong Lee <muwoong.lee@samsung.com>
Wed, 27 Apr 2016 09:40:14 +0000 (18:40 +0900)
committerMu-Woong Lee <muwoong.lee@samsung.com>
Wed, 27 Apr 2016 09:40:14 +0000 (18:40 +0900)
Change-Id: I361c68a50ce67a3afbb04fab259bad9f9b5b67f5
Signed-off-by: Mu-Woong Lee <muwoong.lee@samsung.com>
src/policy/PolicyManager.cpp

index c742254..dba2674 100644 (file)
@@ -38,18 +38,20 @@ void PolicyManager::__init()
 {
        __subscribe(SUBJ_APP_LOGGER, __ridAppLogging);
        __subscribe(SUBJ_MEDIA_LOGGER, __ridMediaLogging);
-       __subscribe(SUBJ_SOCIAL_LOGGER, __ridSocialLogging);
 
+#if 0
        __subscribe(SUBJ_PLACE_DETECTION, __ridPlaceDetection);
+#endif
 }
 
 void PolicyManager::__release()
 {
        __unsubscribe(SUBJ_APP_LOGGER, __ridAppLogging);
        __unsubscribe(SUBJ_MEDIA_LOGGER, __ridMediaLogging);
-       __unsubscribe(SUBJ_SOCIAL_LOGGER, __ridSocialLogging);
 
+#if 0
        __unsubscribe(SUBJ_PLACE_DETECTION, __ridPlaceDetection);
+#endif
 }
 
 void PolicyManager::__subscribe(const char *subject, int &reqId)