Browse Source

LibC: Remove debug spam from openpty()

Andreas Kling 3 years ago
parent
commit
821c80848f
1 changed files with 0 additions and 3 deletions
  1. 0 3
      Userland/Libraries/LibC/pty.cpp

+ 0 - 3
Userland/Libraries/LibC/pty.cpp

@@ -73,9 +73,6 @@ int openpty(int* amaster, int* aslave, char* name, const struct termios* termp,
             return -1;
         }
     }
-
-    dbgln("openpty, master={}, slave={}, tty_name={}", *amaster, *aslave, tty_name);
-
     return 0;
 }