From 09712ce2844979b00d0ccab0afa64a61d11e8020 Mon Sep 17 00:00:00 2001 From: Konstantin Gindemit Date: Sun, 26 Nov 2023 21:12:06 +0100 Subject: [PATCH] ~ Added log messages to trigger the build in GitHub actions. --- src/LottiePlugin.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/LottiePlugin.cpp b/src/LottiePlugin.cpp index fa7429a..75825f5 100644 --- a/src/LottiePlugin.cpp +++ b/src/LottiePlugin.cpp @@ -119,6 +119,10 @@ extern "C" { vDebug << "Initialized logger (debug) test message"; vWarning << "Initialized logger (warning) test message"; vCritical << "Initialized logger (critical) test message"; + // print the paths + vDebug << "log_dir_path: " << log_dir_path; + vDebug << "log_file_name: " << log_file_name; + vDebug << "log_file_roll_size_mb: " << log_file_roll_size_mb; return 0; } }