Re: Error messages in log file

Home Forums General Programming Error messages in log file Re: Error messages in log file

#4397
atom
Keymaster
    • Topics: 159
    • Replies: 2945
    • Total: 3104
    • ★★★★★

    Theese look like assertion failures from the JUCE library you can browse the JUCE code to see what’s going on: for example
    ComboBox line 101: https://github.com/julianstorer/JUCE/bl … x.cpp#L101

    Assertions are usually WARNINGS not errors, the app should live and work with them though it’s better to avoid them if possible.

    Ctrlr