From b03ffd078edd708e688117a53df5d5895599aecd Mon Sep 17 00:00:00 2001 From: Konstantin Gindemit Date: Sun, 26 Nov 2023 20:59:08 +0100 Subject: [PATCH] ~ Test message appended to the logger --- src/LottiePlugin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/LottiePlugin.cpp b/src/LottiePlugin.cpp index 69266d4..fa7429a 100644 --- a/src/LottiePlugin.cpp +++ b/src/LottiePlugin.cpp @@ -116,9 +116,9 @@ extern "C" { fprintf(stdout, "Initializing logger (stdout)\n"); initialize(GuaranteedLogger(), std::string(log_dir_path), std::string(log_file_name), log_file_roll_size_mb); set_log_level(LogLevel::INFO); - vDebug << "Initialized logger (debug)"; - vWarning << "Initialized logger (warning)"; - vCritical << "Initialized logger (critical)"; + vDebug << "Initialized logger (debug) test message"; + vWarning << "Initialized logger (warning) test message"; + vCritical << "Initialized logger (critical) test message"; return 0; } }