From 0b3904fd382381782c46ca91b4c01ec8a915d195 Mon Sep 17 00:00:00 2001 From: FlightlessMango Date: Sat, 20 May 2023 08:26:03 +0200 Subject: [PATCH] change config and upload logs to debug --- src/config.cpp | 4 ++-- src/overlay.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.cpp b/src/config.cpp index 74466d4..d6b272a 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -116,12 +116,12 @@ void parseConfigFile(overlay_params& params) { std::ifstream stream(*p); if (!stream.good()) { // printing just so user has an idea of possible configs - SPDLOG_INFO("skipping config: '{}' [ not found ]", *p); + SPDLOG_DEBUG("skipping config: '{}' [ not found ]", *p); continue; } stream.imbue(std::locale::classic()); - SPDLOG_INFO("parsing config: '{}'", *p); + SPDLOG_DEBUG("parsing config: '{}'", *p); while (std::getline(stream, line)) { parseConfigLine(line, params.options); diff --git a/src/overlay.cpp b/src/overlay.cpp index b807fdb..9957435 100644 --- a/src/overlay.cpp +++ b/src/overlay.cpp @@ -871,7 +871,7 @@ void init_gpu_stats(uint32_t& vendorID, uint32_t reported_deviceID, overlay_para } #endif if (!params.permit_upload) - SPDLOG_INFO("Uploading is disabled (permit_upload = 0)"); + SPDLOG_DEBUG("Uploading is disabled (permit_upload = 0)"); } void init_system_info(){