From 01b498f9c25c41fe92003cb5b0296175a3e2bb22 Mon Sep 17 00:00:00 2001 From: Xackery Date: Fri, 2 Sep 2022 10:50:02 -0700 Subject: [PATCH] Fixed line printing to be hyperlink friendly --- common/eqemu_logsys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/eqemu_logsys.cpp b/common/eqemu_logsys.cpp index 2e16e64be..80244a068 100644 --- a/common/eqemu_logsys.cpp +++ b/common/eqemu_logsys.cpp @@ -469,7 +469,7 @@ void EQEmuLogSys::Out( std::string prefix; if (RuleB(Logging, PrintFileFunctionAndLine)) { - prefix = fmt::format("[{0}::{1}:{2}] ", base_file_name(file), func, line); + prefix = fmt::format("[{0}:{1}] ", base_file_name(file), line); } va_list args;