diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 17:20:13 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 17:20:13 +1000 |
commit | aa1eeebb1c05edc22335cbb48af5d42be20750c0 (patch) | |
tree | cc0ef4dc620cb8621fd1a3762b7205b7a16401dc /src/log.h | |
parent | f083cacb259054ce996b70f8b9dc0d9eb0bdbfb8 (diff) |
moving some maths functions to implementation file
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ void logger_shutdown(); // TODO: macro that outputs logger macros for a specific subsystem or string prefix e.g. "MEMORY" -> // logs now have more context potentially have line numbers too? -void log_output(log_level level, const char* message, ...); +void log_output(log_level level, const char *message, ...); #define FATAL(message, ...) log_output(LOG_LEVEL_FATAL, message, ##__VA_ARGS__) #define ERROR(message, ...) log_output(LOG_LEVEL_ERROR, message, ##__VA_ARGS__) |