Resources, FMOD Studio Settings Issue

So have an issue with the fmod settings and my Mac build failed due to it.
a bunch of these lines come up in the console,
[FMOD] PlaylistInstrumentInstance::startFullLengthHook : Attempting to schedule a sound in the past, this could cause inaccurate playback.
Followed by these whens I stop the project,
[FMOD] FMOD_OS_Net_Read : read failed with errno 9
[FMOD] ProfileClient::recvThreadLoopFunction : Recv thread loop returned 43
Please talk me through fixing this issue. Thank you.

The [FMOD] PlaylistInstrumentInstance::startFullLengthHook : Attempting to schedule a sound in the past, this could cause inaccurate playback message indicates a problem that only occurs in real time, and so should not affect your build.

The other messages:

[FMOD] FMOD_OS_Net_Read : read failed with errno 9
[FMOD] ProfileClient::recvThreadLoopFunction : Recv thread loop returned 43

Indicate that you’ve exited without cleanly closing a network connection, and usually occur if you exit your game (or stop running your game) without first disconnecting live update.

None of these messages are related to any issue with building your project.