chore(example): fix unicode issue (thanks chatgpt)

This commit is contained in:
illyum 2024-09-15 04:37:03 -06:00
parent ea1f25d26b
commit 24f4fb3841

View File

@ -46,7 +46,7 @@ void ShowLogger() {
// CORE logger is intended for internal engine or core-level logging // CORE logger is intended for internal engine or core-level logging
// In most cases, you won't need to use CORE logging in game/application code, // In most cases, you won't need to use CORE logging in game/application code,
// but its available for engine-level diagnostics if necessary // but it's available for engine-level diagnostics if necessary
CORE_LOG_TRACE("Initializing {} with age {}", module, age); // Logs a trace-level message, useful for very detailed information CORE_LOG_TRACE("Initializing {} with age {}", module, age); // Logs a trace-level message, useful for very detailed information
CORE_LOG_DEBUG("This is an example of a debug message"); // Logs a debug message, typically used for debugging purposes CORE_LOG_DEBUG("This is an example of a debug message"); // Logs a debug message, typically used for debugging purposes
CORE_LOG_WARN("This is an example of a warn message"); // Logs a warning, indicating a non-critical issue that should be investigated CORE_LOG_WARN("This is an example of a warn message"); // Logs a warning, indicating a non-critical issue that should be investigated