From: Matthew Wild Date: Sat, 6 Dec 2008 23:22:35 +0000 (+0000) Subject: Remove some debugging from pposix.c X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=ec296136d1827b5356fff46784581e6d8706006e;p=prosody.git Remove some debugging from pposix.c --- diff --git a/util-src/pposix.c b/util-src/pposix.c index c98414cc..5e15ed76 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -53,13 +53,11 @@ static int daemonize(lua_State *L) else if(pid != 0) { /* We are the parent process */ - printf("We are the parent, pid of child is %d\n", (int)pid); lua_pushboolean(L, 1); lua_pushnumber(L, pid); return 2; } - printf("We are the child, pid reports %d\n", (int)pid); /* and we are the child process */ if(setsid() == -1) {