Suppose there are two functions findUser(id:String):Option[User] and findAddress(user:User):Option[Address] invoked as follows:
for(user <- findUser(id); address <- findAddress(user)) println(address)
Now I would like to add error logging to this for-comprehension. I would like to call a log(msg:String) function if either user or address is not found.
for(user <- findUser(id) ifNone log("user not found");
address <- findAddress(user) ifNone log("address not found"))
println(address)
Can I do it without changing the function signatures?