Module

Effect.Console

#log

log :: String -> Effect Unit

Write a message to the console.

#logShow

logShow :: forall a. Show a => a -> Effect Unit

Write a value to the console, using its Show instance to produce a String.

#warn

warn :: String -> Effect Unit

Write an warning to the console.

#warnShow

warnShow :: forall a. Show a => a -> Effect Unit

Write an warning value to the console, using its Show instance to produce a String.

#error

error :: String -> Effect Unit

Write an error to the console.

#errorShow

errorShow :: forall a. Show a => a -> Effect Unit

Write an error value to the console, using its Show instance to produce a String.

#info

info :: String -> Effect Unit

Write an info message to the console.

#infoShow

infoShow :: forall a. Show a => a -> Effect Unit

Write an info value to the console, using its Show instance to produce a String.