Remove unnecessary dlog
authorSung-jae Park <nicesj.park@samsung.com>
Wed, 29 May 2013 07:06:20 +0000 (16:06 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Wed, 29 May 2013 07:06:20 +0000 (16:06 +0900)
Change-Id: I45c41ee1aab082c79983dfd351e7fb3ebd6303d1

src/livebox.c

index c3a112a..21b5667 100644 (file)
@@ -2715,13 +2715,11 @@ int lb_delete_all(void)
 int lb_set_content(struct livebox *handler, const char *content)
 {
        if (handler->content) {
-               DbgPrint("Release content: %s\n", content);
                free(handler->content);
                handler->content = NULL;
        }
 
        if (content) {
-               DbgPrint("Update Content: [%s]\n", content);
                handler->content = strdup(content);
                if (!handler->content) {
                        CRITICAL_LOG("Heap: %s (content: %s)\n", strerror(errno), content);