Log levels

As we discussed earlier, with the log crate, we need to import the following logging macros. We can use the following:

These are ordered by the importance of the information they print, with trace! being the least important and error! being the most important:

We imported the necessary macro directly from the log crate.