diff --git a/Userland/rm.cpp b/Userland/rm.cpp index 17ee2ca956..0c02aaa925 100644 --- a/Userland/rm.cpp +++ b/Userland/rm.cpp @@ -35,7 +35,6 @@ int remove(bool recursive, const char* path) return s; } } - printf("Removing directory: %s\n", path); int s = rmdir(path); if (s < 0) { perror("rmdir"); @@ -47,7 +46,6 @@ int remove(bool recursive, const char* path) perror("unlink"); return 1; } - printf("Removing file: %s\n", path); } return 0; }