summaryrefslogtreecommitdiff
path: root/src/log.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-05 17:44:50 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-05 17:44:50 +1000
commit8ce117f0b3fd4ceeb1d7058dde8793e4421ec076 (patch)
treeafb228582dbceb6d9271b0dbd365223119f59d35 /src/log.c
parent2c1a7d7f293c26d631e15cf4cbec542ac50994aa (diff)
trying to get rust bindgen working
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/log.c b/src/log.c
index e69de29..f0dfd87 100644
--- a/src/log.c
+++ b/src/log.c
@@ -0,0 +1,7 @@
+#include <celeritas.h>
+
+void log_output(char* module, LogLevel level, const char* message, ...) {
+ char out_msg[4096];
+
+ printf("Msg: %s\n", message);
+}