diff --git a/examples/client/client.cpp b/examples/client/client.cpp index f7aac50..f749abc 100644 --- a/examples/client/client.cpp +++ b/examples/client/client.cpp @@ -46,7 +46,7 @@ void ShowLogger() { // 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, - // but it’s 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_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