diff options
author | Mathias Stearn <mathias@10gen.com> | 2010-02-23 21:35:40 -0500 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2010-02-23 21:35:40 -0500 |
commit | 78a9a1fab0853092152117ef92eed375cbc1c3e8 (patch) | |
tree | 1a1305d77a5d544a24afe4e46ee259938bc000b9 /shell | |
parent | 365f9803afbb5b7bb8fa104f744ea6611994f14f (diff) | |
download | mongo-78a9a1fab0853092152117ef92eed375cbc1c3e8.tar.gz |
remove debugging lines
Diffstat (limited to 'shell')
-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); |