aboutsummaryrefslogtreecommitdiffstats
path: root/src/log.h
AgeCommit message (Collapse)AuthorFilesLines
2024-11-24Use angle brackets for library includesDavid Robillard1-2/+2
2024-11-24Move control port printing to console clientDavid Robillard1-6/+0
This functionality was spammed across the codebase and kind of half-implemented for graphical clients, but only really makes sense for the console one. So, isolate it there.
2024-11-24Improve header documentationDavid Robillard1-2/+1
2024-11-24Use a typedef for ports like other structsDavid Robillard1-3/+2
2024-11-17Move string utilities to a separate compilation unitDavid Robillard1-8/+0
These don't really have anything to do with logging. Also replace a call to the non-standard strdup() in the process.
2024-11-14Add brief comments for undocumented "public" functionsDavid Robillard1-0/+8
2024-11-14Remove unused prototypes and make functions static where possibleDavid Robillard1-4/+0
2024-10-12Add missing const qualifiersDavid Robillard1-1/+1
2022-08-17Use logging API for almost all console outputDavid Robillard1-0/+1
Towards being smarter about this and maintaining distinction between kinds of output, so the console interface can grow into a more solid language/protocol.
2022-08-17Define JALV_BEGIN_DECLS and define JALV_END_DECLSDavid Robillard1-6/+3
One lines good, three lines bad.
2022-08-17Separate JalvLog from JalvDavid Robillard1-0/+6
2022-08-17Use a consistent interface for error/warning/debug loggingDavid Robillard1-2/+16
Towards the ability to hook the log into other things (for display in a UI, for example). The implementation still just prints to stderr, although now with consistent formatting.
2022-08-17Reduce dependence on jalv_internal.hDavid Robillard1-1/+1
2022-08-17Move Port definition to its own headerDavid Robillard1-0/+2
2022-08-17Separate log.h from jalv_internal.hDavid Robillard1-0/+54