aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 19:57:24 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 19:57:24 +0100
commitbfb4dffccec0a902586927c41b2454c8ddacd9e3 (patch)
tree854402efe33352d70406a8e54badee9306fd3d83 /src/crepe/util
parent80712f111e5b703f4f91b9bd55f4dbb14cb14829 (diff)
add Log function to script
Diffstat (limited to 'src/crepe/util')
-rw-r--r--src/crepe/util/Log.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/crepe/util/Log.h b/src/crepe/util/Log.h
index d55b11e..fc0bb3a 100644
--- a/src/crepe/util/Log.h
+++ b/src/crepe/util/Log.h
@@ -34,11 +34,11 @@ class Log {
public:
//! Log message severity
enum Level {
- TRACE, //< Include (internal) function calls
- DEBUG, //< Include dbg_logf output
- INFO, //< General-purpose messages
- WARNING, //< Non-fatal errors
- ERROR, //< Fatal errors
+ TRACE, //!< Include (internal) function calls
+ DEBUG, //!< Include dbg_logf output
+ INFO, //!< General-purpose messages
+ WARNING, //!< Non-fatal errors
+ ERROR, //!< Fatal errors
};
/**