diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 19:57:24 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 19:57:24 +0100 |
commit | bfb4dffccec0a902586927c41b2454c8ddacd9e3 (patch) | |
tree | 854402efe33352d70406a8e54badee9306fd3d83 /src/crepe/util/Log.h | |
parent | 80712f111e5b703f4f91b9bd55f4dbb14cb14829 (diff) |
add Log function to script
Diffstat (limited to 'src/crepe/util/Log.h')
-rw-r--r-- | src/crepe/util/Log.h | 10 |
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 }; /** |