Created
September 22, 2019 15:19
-
-
Save wiccy46/4fc655897c35a639be1a2750bf0dc4cf to your computer and use it in GitHub Desktop.
[Juce_logger]Juce Logger on GUI #c++ #juce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TextEditor diagnosticsBox; | |
| void logMessage(const String& m){ | |
| diagnosticsBox.moveCaretToEnd(); | |
| diagnosticsBox.insertTextAtCaret(m + newLine); | |
| } | |
| // resized() | |
| diagnosticsBox.setBounds; | |
| // Usage: | |
| logMessage("msg"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment