aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/dup2.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/guts/dup2.c')
-rw-r--r--ports/unix/guts/dup2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/unix/guts/dup2.c b/ports/unix/guts/dup2.c
index cd335ac..8180039 100644
--- a/ports/unix/guts/dup2.c
+++ b/ports/unix/guts/dup2.c
@@ -10,7 +10,7 @@
/* close existing one first - this also causes the socket to the
* server to get moved around if someone tries to overwrite it. */
- pseudo_debug(PDBGF_CLIENT, "dup2: %d->%d\n", oldfd, newfd);
+ pseudo_debug(PDBGF_CLIENT | PDBGF_VERBOSE, "dup2: %d->%d\n", oldfd, newfd);
pseudo_client_op(OP_CLOSE, 0, newfd, -1, 0, 0);
rc = real_dup2(oldfd, newfd);
save_errno = errno;