From da278ac7d0a59c3a0bb50eecc2cd644fa87e274c Mon Sep 17 00:00:00 2001 From: Joachim Schoeberl Date: Sat, 11 Feb 2023 20:25:23 +0100 Subject: [PATCH] more verbose warning msg --- libsrc/core/profiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/core/profiler.cpp b/libsrc/core/profiler.cpp index 33ef98f4..cf49654b 100644 --- a/libsrc/core/profiler.cpp +++ b/libsrc/core/profiler.cpp @@ -94,7 +94,7 @@ namespace ngcore if (first_overflow) { first_overflow = false; - NgProfiler::logger->warn("no more timer available, reusing last one"); + NgProfiler::logger->warn( ("no more timer available ("+name+"), reusing last one").c_str()); } return 0; }