From 321abfd23d7f0542da0de78c697570d0260d03c7 Mon Sep 17 00:00:00 2001 From: Adam Jorgensen Date: Tue, 26 Jul 2022 17:19:02 -0400 Subject: [PATCH] #38: Updated name of logging file --- XBOFS.win.qt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XBOFS.win.qt/main.cpp b/XBOFS.win.qt/main.cpp index 0c620b3..ee9ebfe 100644 --- a/XBOFS.win.qt/main.cpp +++ b/XBOFS.win.qt/main.cpp @@ -48,7 +48,7 @@ int main(int argc, char *argv[]) // Configure logging spdlog::set_pattern("[%Y-%m-%d %H:%M:%S.%e] [%t] [%n] [%l] %v"); spdlog::flush_every(std::chrono::seconds(1)); - auto rotatingFileSink = std::make_shared("xbofs.win.qt5.log", 1024 * 1024 * 10, 10); + auto rotatingFileSink = std::make_shared("xbofs.win.log", 1024 * 1024 * 10, 10); auto sinks = std::vector{ rotatingFileSink }; auto logger = XBOFSWin::get_logger("XBOFS.Win", sinks); logger->info("Logging initialised");