ios: how can I stop verbose debug logging

FMOD is logging 29 lines of debug info for every single sound that is being called.

How can I stop this?

I take it that the “L” libraries are debug and not just release builds with logging.

Is that correct? I would still like to use debug builds that give me info if I run into an edge condition but this about of logging is insane.

The “L” libraries are “logging”, they are still compiled as release, just with the log messages and some extra validation.

You can control the level and destination of log messages with FMOD::Debug_Initialize.

1 Like