definition:
|
getCurlCmdOpts :: ErrorLogger (String,[String])
getCurlCmdOpts = do
ll <- getLogLevel
return $ ("curl",
["--max-time", "30"] ++
(if ll == Debug then [] else ["--silent", "--show-error"]))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Returns the `curl` command (first component of the result)
--- together with some standard options. If the log level is not `Debug`,
--- the options `--silent --show-error` are added so that
--- `curl` works in silent mode. Moreover, a max-time is used to avoid
--- hanging forever if a server cannot be reached.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
getCurlCmdOpts
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.ErrorLogger.ErrorLogger (String, [String])
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|