aboutsummaryrefslogtreecommitdiffstats
path: root/core/logging.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add a function to set a callback for log messagesChris Robinson2023-07-021-6/+76
|
* Don't pass the file handle to al_printChris Robinson2023-07-011-1/+11
|
* Avoid using al::vector unnecessarilyChris Robinson2023-05-121-2/+2
|
* Use deduction guides instead of helper functions for spansChris Robinson2023-05-051-4/+4
|
* Use macros for the likely/unlikely attributesChris Robinson2023-03-011-1/+1
| | | | | The syntax parser for GCC 8 (and earlier?) fails when these attributes are in certain places.
* Fix debug logging on Windows non-release buuildsChris Robinson2023-01-161-5/+1
| | | | And skip logging for appropriate log levels on Windows release builds.
* Combine multiple al_printf definitionsChris Robinson2023-01-021-45/+37
| | | | And separate the log level prefix from the message.
* Avoid using a macro to wrap standard attributesChris Robinson2022-12-061-2/+2
|
* Use standard likely/unlikely attributes when availableChris Robinson2022-12-051-2/+2
|
* Slightly improve logging on WindowsChris Robinson2021-11-211-2/+2
| | | | | The characters won't display properly if the system codepage isn't UTF-8, but at least it shouldn't cut the line off prematurely.
* Fix inverted macro checkChris Robinson2021-10-041-1/+1
|
* Don't call OutputDebugStringW in Release buildsChris Robinson2021-10-031-0/+6
|
* Silence some static analysis warningsChris Robinson2021-10-031-6/+6
|
* Move logging to coreChris Robinson2020-12-171-0/+95