Your task is to create a function that simulates fetching data for planning an event. The function should concurrently fetch three independent sets of data.
- Guest List
- Catering Details
- Venue Availability
All three tasks must succeed for the dashboard to display the complete event information. If all the data is fetched correctly, log the fetched data to the console in the following format.
After this, log the message Event planning data loaded successfully!. to the console.
If any one of these tasks fails, for example, if the guest list cannot be fetched, the catering details are unavailable, or the venue information is missing, the program should stop and log the error in the format Error:, <error> to the console at the error level.
Regardless of whether the tasks succeed or fail, always log the message Fetch Operations Completed Successfully. at the end of the program.