From 6effe1b20181674cb9a35c1436182e037b39f010 Mon Sep 17 00:00:00 2001 From: FlightlessMango Date: Tue, 10 Oct 2023 11:08:07 +0200 Subject: [PATCH] spdlog: default to debug level --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 8d6b16e5..8e6a3d52 100644 --- a/meson.build +++ b/meson.build @@ -30,9 +30,9 @@ pre_args = [ # Always set max spdlog level, handle this using MANGOHUD_LOG_LEVEL instead. if get_option('buildtype') == 'debug' pre_args += '-DDEBUG' + pre_args += '-DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_TRACE' endif -pre_args += '-DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_TRACE' - +pre_args += '-DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_DEBUG' # TODO: this is very incomplete is_unixy = false if ['linux', 'cygwin', 'gnu'].contains(host_machine.system())