diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-29 20:35:17 +0100 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-29 20:35:17 +0100 | 
| commit | e4be73051a68b552c44280bbe9836dd4f02972d8 (patch) | |
| tree | a2d0dbad0255a9da7c58f74c7479a39fcccd34db /src/crepe/util/Log.h | |
| parent | 693355f55193cb2ea4c29616073227e37665afc1 (diff) | |
audio system kinda working
Diffstat (limited to 'src/crepe/util/Log.h')
| -rw-r--r-- | src/crepe/util/Log.h | 16 | 
1 files changed, 0 insertions, 16 deletions
diff --git a/src/crepe/util/Log.h b/src/crepe/util/Log.h index 914145a..fc0bb3a 100644 --- a/src/crepe/util/Log.h +++ b/src/crepe/util/Log.h @@ -77,22 +77,6 @@ private:  	 * \return Colored message severity prefix string  	 */  	static std::string prefix(const Level & level); - -public: -	struct Config { -		/** -		 * \brief Log level -		 * -		 * Only messages with equal or higher priority than this value will be logged. -		 */ -		Level level = INFO; -		/** -		 * \brief Colored log output -		 * -		 * Enables log coloring using ANSI escape codes. -		 */ -		bool color = true; -	};  };  } // namespace crepe  |