aboutsummaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-10-28 14:23:25 -0400
committerCara Salter <cara@devcara.com>2022-10-28 14:23:25 -0400
commit58b533fc716ff716e36b88ae84428a6a05d4db0e (patch)
tree7c55a61ff3154962c05488a90aecf49da460ee3e /src/log.h
parentaea6381412f36ea522afe0d3aab67de772fe72d3 (diff)
downloadcmud-58b533fc716ff716e36b88ae84428a6a05d4db0e.tar.gz
cmud-58b533fc716ff716e36b88ae84428a6a05d4db0e.zip
log: Logging, but make it :sparkles: pretty :sparkles:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/log.h b/src/log.h
index cf2fa3e..e09ed82 100644
--- a/src/log.h
+++ b/src/log.h
@@ -18,6 +18,8 @@
/* ##### EXPORTED FUNCTION DECLARATIONS ######################################### */
- /* :TODO:10/27/2022 11:48:08 AM:: Sort out other levels */
-int debug(char msg[]);
-int info(char msg[]);
+
+int debug(char msg[], ...);
+int info(char msg[], ...);
+int warning(char msg[], ...);
+int error(char msg[], ...);