Remove offending putStrLn-s
The two removed lines littered the terminal.
This commit is contained in:
parent
a4448fa941
commit
5527036d6c
1 changed files with 0 additions and 2 deletions
|
@ -782,7 +782,6 @@ updateBlock ordered col (prevCount, docs) = do
|
||||||
++ (show unknownErr)]
|
++ (show unknownErr)]
|
||||||
|
|
||||||
let upsertedList = map docToUpserted $ fromMaybe [] (doc !? "upserted")
|
let upsertedList = map docToUpserted $ fromMaybe [] (doc !? "upserted")
|
||||||
liftIO $ putStrLn $ show doc
|
|
||||||
let successResults = WriteResult False n (doc !? "nModified") 0 upsertedList [] []
|
let successResults = WriteResult False n (doc !? "nModified") 0 upsertedList [] []
|
||||||
return $ foldl1' mergeWriteResults [writeErrorsResults, writeConcernResults, successResults]
|
return $ foldl1' mergeWriteResults [writeErrorsResults, writeConcernResults, successResults]
|
||||||
|
|
||||||
|
@ -938,7 +937,6 @@ deleteBlock ordered col (prevCount, docs) = do
|
||||||
Confirm params -> params
|
Confirm params -> params
|
||||||
doc <- runCommand $ deleteCommandDocument col ordered docs writeConcern
|
doc <- runCommand $ deleteCommandDocument col ordered docs writeConcern
|
||||||
let n = fromMaybe 0 $ doc !? "n"
|
let n = fromMaybe 0 $ doc !? "n"
|
||||||
liftIO $ putStrLn $ "result of delete block: " ++ (show n)
|
|
||||||
|
|
||||||
let successResults = WriteResult False 0 Nothing n [] [] []
|
let successResults = WriteResult False 0 Nothing n [] [] []
|
||||||
let writeErrorsResults =
|
let writeErrorsResults =
|
||||||
|
|
Loading…
Reference in a new issue