Commit 3f8ab4b7 authored by Yoelis Acourt's avatar Yoelis Acourt

chore: remove pTrace from the build

parent 9d00b73f
...@@ -28,7 +28,6 @@ import Data.Vector qualified as V ...@@ -28,7 +28,6 @@ import Data.Vector qualified as V
import Gargantext.Database.Admin.Types.Hyperdata.Document ( HyperdataDocument(..) ) import Gargantext.Database.Admin.Types.Hyperdata.Document ( HyperdataDocument(..) )
import Gargantext.Prelude hiding (length, show) import Gargantext.Prelude hiding (length, show)
import Protolude import Protolude
import Debug.Pretty.Simple
data TsvGargV3 = TsvGargV3 data TsvGargV3 = TsvGargV3
...@@ -245,11 +244,10 @@ testCorrectFile bs = ...@@ -245,11 +244,10 @@ testCorrectFile bs =
-- use a map to remove \r that sometimes appear at the end of a line -- use a map to remove \r that sometimes appear at the end of a line
testAllHeadersPresence :: [Text] -> Either Text [Text] testAllHeadersPresence :: [Text] -> Either Text [Text]
testAllHeadersPresence headers = pTraceShow ("CALL: " ++ show headers) $ do testAllHeadersPresence headers = do
let listHeaders = filter (`notElem` (map (T.replace (T.pack "\r") (T.pack ""))headers)) ["Publication Day", "Publication Month", "Publication Year", "Authors", "Title", "Source", "Abstract", "From Country"] let listHeaders = filter (`notElem` (map (T.replace (T.pack "\r") (T.pack ""))headers)) ["Publication Day", "Publication Month", "Publication Year", "Authors", "Title", "Source", "Abstract", "From Country"]
let toto = if null listHeaders then Right headers else Left ((pack " Missing column : ") <> T.intercalate ", " listHeaders) if null listHeaders then Right headers else Left ((pack " Missing column : ") <> T.intercalate ", " listHeaders)
pTraceShow ("RETURN TOTO" ++ show toto) $ toto
getHeaders :: [BL.ByteString] -> Delimiter -> Either Text [Text] getHeaders :: [BL.ByteString] -> Delimiter -> Either Text [Text]
getHeaders bl del = do getHeaders bl del = do
......
...@@ -73,7 +73,6 @@ import Gargantext.Database.Schema.Node (NodePoly(..)) ...@@ -73,7 +73,6 @@ import Gargantext.Database.Schema.Node (NodePoly(..))
import Gargantext.Defaults qualified as Defaults import Gargantext.Defaults qualified as Defaults
import Gargantext.Prelude hiding (hash, toLower) import Gargantext.Prelude hiding (hash, toLower)
import Gargantext.Prelude.Crypto.Hash (hash) import Gargantext.Prelude.Crypto.Hash (hash)
import Debug.Pretty.Simple
{-| To Print result query {-| To Print result query
import Data.ByteString.Internal (ByteString) import Data.ByteString.Internal (ByteString)
import Database.PostgreSQL.Simple (formatQuery) import Database.PostgreSQL.Simple (formatQuery)
...@@ -102,7 +101,6 @@ insertDb userId parentId items = ...@@ -102,7 +101,6 @@ insertDb userId parentId items =
sqlValues = Values fields preparedItems sqlValues = Values fields preparedItems
in in
pTraceShow ("LOOK", preparedItems) $
runPGSQuery queryInsert (Only sqlValues) runPGSQuery queryInsert (Only sqlValues)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment