bufmgr: do not print backend information on stdout 15/237615/1
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 2 Jul 2020 01:33:53 +0000 (10:33 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Thu, 2 Jul 2020 01:33:53 +0000 (10:33 +0900)
Change-Id: I88d0c80e48cdcb1a2c6023eb9fc9ce10dfb90153

src/tbm_bufmgr.c

index eefe8e8..6215836 100644 (file)
@@ -347,8 +347,7 @@ _tbm_backend_load_module(tbm_bufmgr bufmgr, const char *file)
        bufmgr->backend_module_data = backend_module_data;
        bufmgr->bufmgr_data = bufmgr_data;
 
-       TBM_DBG("Success to load module(%s)\n", file);
-       TBM_STDOUT_INFO("Success to load module(%s)", file);
+       TBM_INFO("Success to load module(%s)\n", file);
 
        return 1;
 
@@ -529,7 +528,6 @@ _tbm_bufmgr_init(int fd, int server)
        }
 
        /* load bufmgr priv from env */
-       TBM_STDOUT_INFO("loading backend module");
        if (!_tbm_load_module(gBufMgr, gBufMgr->fd)) {
                TBM_ERR("error : Fail to load bufmgr backend\n");
                _tbm_set_last_result(TBM_ERROR_INVALID_OPERATION);
@@ -539,7 +537,6 @@ _tbm_bufmgr_init(int fd, int server)
                return NULL;
 
        }
-       TBM_STDOUT_INFO("loading backend module done");
        /* LCOV_EXCL_STOP */
 
        gBufMgr->ref_count = 1;