diff options
Diffstat (limited to 'shell/utils.cpp')
-rw-r--r-- | shell/utils.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/shell/utils.cpp b/shell/utils.cpp index d288db6240d..8f2268b7bd7 100644 --- a/shell/utils.cpp +++ b/shell/utils.cpp @@ -348,8 +348,6 @@ namespace mongo { string args = ss.str(); - PRINT(args); - boost::scoped_array<TCHAR> args_tchar (new TCHAR[args.size() + 1]); for (size_t i=0; i < args.size()+1; i++) args_tchar[i] = args[i]; @@ -369,9 +367,6 @@ namespace mongo { ZeroMemory(&pi, sizeof(pi)); bool success = CreateProcess( NULL, args_tchar.get(), NULL, NULL, true, 0, NULL, NULL, &si, &pi); - - PRINT(success); - cout << OUTPUT_ERRNO << endl; assert(success); CloseHandle(pi.hThread); |