servant-client-jsaddle: Remove some debug printing

This commit is contained in:
Robert Hensing 2019-01-31 03:41:19 +01:00 committed by Denis Redozubov
parent 3348665a88
commit 5fe63b9018

View File

@ -39,9 +39,6 @@ data TestResponse = TestResponse { byteList :: [Word8] }
testServer :: Server TestApi
testServer x = do
liftIO $ putStrLn "Hello tehre"
liftIO $ print x
liftIO $ hFlush stdout
pure . TestResponse . B.unpack $ x
testClient :: Client ClientM TestApi