summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2022-06-16 17:26:30 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2022-06-16 17:27:59 +0200
commitd1f2f5f1465eaabcd7ac0f220b72d0816c3325e7 (patch)
treeb990d0bc5c057112b02194a12ce59ab2572d3937
parentMerge pull request #8461 from Morph1984/msvc-narrow-conv (diff)
downloadyuzu-d1f2f5f1465eaabcd7ac0f220b72d0816c3325e7.tar
yuzu-d1f2f5f1465eaabcd7ac0f220b72d0816c3325e7.tar.gz
yuzu-d1f2f5f1465eaabcd7ac0f220b72d0816c3325e7.tar.bz2
yuzu-d1f2f5f1465eaabcd7ac0f220b72d0816c3325e7.tar.lz
yuzu-d1f2f5f1465eaabcd7ac0f220b72d0816c3325e7.tar.xz
yuzu-d1f2f5f1465eaabcd7ac0f220b72d0816c3325e7.tar.zst
yuzu-d1f2f5f1465eaabcd7ac0f220b72d0816c3325e7.zip
-rw-r--r--src/common/param_package.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/param_package.cpp b/src/common/param_package.cpp
index bbf20f5eb..462502e34 100644
--- a/src/common/param_package.cpp
+++ b/src/common/param_package.cpp
@@ -76,7 +76,7 @@ std::string ParamPackage::Serialize() const {
std::string ParamPackage::Get(const std::string& key, const std::string& default_value) const {
auto pair = data.find(key);
if (pair == data.end()) {
- LOG_DEBUG(Common, "key '{}' not found", key);
+ LOG_TRACE(Common, "key '{}' not found", key);
return default_value;
}
@@ -86,7 +86,7 @@ std::string ParamPackage::Get(const std::string& key, const std::string& default
int ParamPackage::Get(const std::string& key, int default_value) const {
auto pair = data.find(key);
if (pair == data.end()) {
- LOG_DEBUG(Common, "key '{}' not found", key);
+ LOG_TRACE(Common, "key '{}' not found", key);
return default_value;
}
@@ -101,7 +101,7 @@ int ParamPackage::Get(const std::string& key, int default_value) const {
float ParamPackage::Get(const std::string& key, float default_value) const {
auto pair = data.find(key);
if (pair == data.end()) {
- LOG_DEBUG(Common, "key {} not found", key);
+ LOG_TRACE(Common, "key {} not found", key);
return default_value;
}