Closed amitaibu closed 8 years ago
I think you're looking for:
liftIO $ putStrLn $ "Copy/ Paste this URL in your browser:" ++ unpack verurl
or
$logInfo $ "Copy/ Paste this URL in your browser:" <> verurl
Thanks - that did the work :)
I've rebased, and also added a note about this new output.
Thanks!
btw, when I tried the following I got an error. Am I importing the wrong lib?
import Text.PrettyPrint (<>)
---
$logInfo $ "Copy/ Paste this URL in your browser:" <> verurl
You should import from Data.Monoid
.
Thanks. One day I'll know it ;)
Following the email registration example, I have no email server on my local (best way to prevent accidental emails :wink: ) - but I still wanted to see the
verurl
one gets.This PR is an attempt at adding the
verurl
to the console. I assume there's a better way to print, butliftIO $ print "Copy/ Paste this URL in your browser:" $ unpack verurl
doesn't seem to work.