summaryrefslogtreecommitdiff
path: root/src/Propellor
diff options
context:
space:
mode:
authorJoey Hess2016-09-15 16:43:29 -0400
committerJoey Hess2016-09-15 16:43:29 -0400
commitb81abff0d4cd9266115ded70129a2ac357b20cef (patch)
tree686ce5c7a9e317a9056f4a2b201f103461b5541f /src/Propellor
parente90ee3b4c58cd0dfb3741ce863eae6838dc96d3c (diff)
avoid using a warning to display hidden service hostname
Diffstat (limited to 'src/Propellor')
-rw-r--r--src/Propellor/Property/Tor.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Tor.hs b/src/Propellor/Property/Tor.hs
index 2fe97e4e..5b8a84ea 100644
--- a/src/Propellor/Property/Tor.hs
+++ b/src/Propellor/Property/Tor.hs
@@ -145,7 +145,7 @@ hiddenServiceAvailable hn port = hiddenServiceHostName $ hiddenService hn port
r <- satisfy
mh <- liftIO $ tryIO $ readFile (varLib </> hn </> "hostname")
case mh of
- Right h -> warningMessage $ unwords ["hidden service hostname:", h]
+ Right h -> infoMessage $ unwords ["hidden service hostname:", h]
Left _e -> warningMessage "hidden service hostname not available yet"
return r