JUCE - mwicat/personal GitHub Wiki

Logging

Logger::writeToLog("yourmessage")

Use font

        auto serifTypeface = Typeface::createSystemTypefaceFor (BinaryData::GentiumPlusR_ttf,
                                                                BinaryData::GentiumPlusR_ttfSize);
        Font headerFont(serifTypeface);
        headerFont.setHeight(34.0f);
        headerLabel.setFont(headerFont);