summaryrefslogtreecommitdiff
path: root/src/benoit/logfunc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/benoit/logfunc.cc')
-rw-r--r--src/benoit/logfunc.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benoit/logfunc.cc b/src/benoit/logfunc.cc
index 54f4202..1a3c0bf 100644
--- a/src/benoit/logfunc.cc
+++ b/src/benoit/logfunc.cc
@@ -4,5 +4,6 @@
# include <string>
using namespace std::literals::string_literals;
void benoit::logfunc(std::string const func) {
- benoit::log(fmt::format("Function call: {}."s,func));
+ std::string const funcname = "benoit::logfunc(std::string const)"s;
+ benoit::log(fmt::format("\33[33mFunction call\33[0m: {}."s,func));
}